FluentDOM
Copyright: 2009-2018 FluentDOM Contributors
License: The MIT License
FluentDOM provides extended XML handling classes for PHPs DOM, XMLReader and XMLWriter. Additionally, it contains a easy to use jQuery like, fluent interface for DOM.
Here are loaders and serializers for different formats like JSON, YAML, JsonML and others. More (like HTML5) can be installed as additional packages.
FluentDOM is a test driven project. We write tests before and during the
development. You will find the PHPUnit tests in the tests/
subdirectory.
Table Of Contents
- Examples
- Support
- Requirements
- Packagist
- Usage
- Backwards Compatibility Breaks
Examples
Many examples can be found in the examples/
subdirectory. Here are
some for an initial impression:
Read All Links in a HTML File
$document = FluentDOM::load(
$htmlFile,
'text/html',
[FluentDOM\Loader\Options::ALLOW_FILE => TRUE]
);
foreach ($document('//a[@href]') as $a) {
$links[] = [
'caption' => (string)$a,
'href' => $a['href']
];
}
var_dump($links);
Create a Select From an Array
$_ = FluentDOM::create();
$_->formatOutput = TRUE;
echo $_(
'select',
['name' => 'example'],
$_->each(
['One', 'Two', 'Three'],
function($text, $index) use ($_) {
return $_('option', ['value' => $index], $text);
}
)
)->document->saveHTML();
Read Large XML Files (FluentDOM 6.2)
$reader = new FluentDOM\XMLReader();
$reader->open('sitemap.xml');
$reader->registerNamespace('s', 'http://www.sitemaps.org/schemas/sitemap/0.9');
foreach (new FluentDOM\XMLReader\SiblingIterator($reader, 's:url') as $url) {
/** @var FluentDOM\DOM\Element $url */
var_dump(
[
'location' => $url('string(s:loc)'),
'updated' => $url('string(s:lastmod)')
]
);
}
Support
The wiki provides information and usage examples.
If you find a bug or have a feature request please report it in the issue tracker.
Be ware that the release packages (downloads) do not include the examples or tests. They are not needed to use the library. If you clone the repository, they will be included.
Security Issues
If you find a bug that has security implications, you can send an email directly to thomas@weinert.info
.
Requirements
PHP
- PHP >= 7.0
- ext/dom
- Optional
- ext/xmlreader
- ext/xmlwriter
FluentDOM needs at least PHP 7.0 and the DOM extension. For some features additional extensions might be needed, like ext/json to load JSON strings.
To use the extended XMLReader/XMLWriter you will need the respective PHP extensions, of course.
HHVM
FluentDOM 5.2 and later requires HHVM 3.5.
FluentDOM 4.0 to 5.1 work with HHVM 3.3 but it was limited. If you like to use HHVM it is strongly suggest to use newer releases.
FluentDOM 7.0 and later has not support for HHVM any more.
Packagist
FluentDOM is available on Packagist.org, just add the dependency to your composer.json.
{
"require": {
"fluentdom/fluentdom": "^7.0"
}
}
Usage
The following examples load the sample.xml file, look for tags <h1> with the attribute “id” that has the value “title”, set the content of these tags to “Hello World” and output the manipulated document.
Extended DOM (FluentDOM >= 5.2)
Using the FluentDOM\Document
class:
$fd = FluentDOM::load('sample.xml');
foreach ($fd('//h1[@id = "title"]') as $node) {
$node->nodeValue = 'Hello World!';
}
echo $fd->saveXml();
jQuery Style API
Using the FluentDOM\Query
class:
echo FluentDOM('sample.xml')
->find('//h1[@id = "title"]')
->text('Hello World!');
CSS Selectors
If you install a CSS selector to Xpath translation library into a project,
you can use the FluentDOM::QueryCss()
function. It returns a FluentDOM\Query
instance
supporting CSS 3 selectors.
$fd = FluentDOM::QueryCss('sample.xml')
->find('h1#title')
->text('Hello World!');
Read more about it in the Wiki
Creating XML
New features in FluentDOM make it easy to create XML, even XML with namespaces. Basically
you can register XML namespaces on the document and methods without direct namespace support
(like createElement()
) will resolve the namespace and call the namespace aware variant
(like createElementNS()
).
Check the Wiki for an example.
Backwards Compatibility Breaks
From 6.2 to 7.0
The minimum required PHP version now is 7.0. HHVM is not supported any more. Scalar type hints and return types were added.
Moved the extended DOM classes into the FluentDOM\DOM
namespace.
(FluentDOM\Document
-> FluentDOM\DOM\Document
). FluentDOM\Nodes\Creator
was moved
to FluentDOM\Creator
. Several internal classes were moved into a FluentDOM\Utiltity
namespace.
FluentDOM\Query::get()
now return a DOMNode
is the position was provided, not an array
any more.
FluentDOM\DOM\Element::find()
was removed, use FluentDOM($element)->find()
.
Previous BC breaks are documented in the Wiki.