Download the PHP package watoki/dom without Composer
On this page you can find all versions of the php package watoki/dom. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Vendor watoki
Package dom
Short Description A minimal (X)HTML/XML parser for PHP
License MIT
Homepage http://github.com/watoki/dom
Package dom
Short Description A minimal (X)HTML/XML parser for PHP
License MIT
Homepage http://github.com/watoki/dom
Please rate this library. Is it a good library?
Informations about the package dom
dom
A very simple (X)HTML/XML parser for PHP. It's goal is that the not manipulated output is as close as possible to the input. This means that it will parse most invalid mark-up without complains.
Usage
Include dom into your project with composer and then:
$parser = new Parser('<my>Custom <html></html></my>');
$parser->getNodes()->first()->setName('Your');
$printer = new Printer();
echo $printer->printNodes($parser->getNodes()); // <Your>Custom <html></html></Your>
All versions of dom with dependencies
PHP Build Version
Package Version
The package watoki/dom contains the following files
Loading the files please wait ....