php-extended / php-html-transformer-cdata-filter
This package is abandoned and no longer maintained.
The author suggests using the php-extended/php-html-transformer-object package instead.
A filter for html trees that removes cdata nodes
3.1.16
2021-06-25 09:49 UTC
Requires
Requires (Dev)
README
A filter for html trees that removes cdata nodes.
Installation
The installation of this library is made via composer.
Download composer.phar
from their website.
Then add to your composer.json :
"require": {
...
"php-extended/php-html-transformer-cdata-filter": "^3",
...
}
Then run php composer.phar update
to install this library.
The autoloading of all classes of this library is made through composer's autoloader.
Basic Usage
To filter a dom node, do the following :
use PhpExtended\HtmlTransformerCDataFilter;
/* @var $dom \PhpExtended\Html\HtmlAbstractNodeInterface */
$filter = new HtmlTransformerCdataFilter();
$filtered = $filter->transform($dom);
// $filtered instanceof \PhpExtended\Html\HtmlAbstractNodeInterface
// but without cdata nodes
License
MIT (See license file).