ivopetkov / html5-dom-document-php
HTML5 DOMDocument PHP library (extends DOMDocument)
Fund package maintenance!
ivopetkov
www.paypal.me/ivopetkovcom
Installs: 978 823
Dependents: 48
Suggesters: 0
Security: 0
Stars: 599
Watchers: 30
Forks: 40
Open Issues: 10
Requires
- php: 7.0.*|7.1.*|7.2.*|7.3.*|7.4.*|8.0.*|8.1.*|8.2.*|8.3.*
- ext-dom: *
Requires (Dev)
- dev-master
- v2.7.0
- v2.6.0
- v2.5.0
- v2.4.0
- v2.3.1
- v2.3.0
- v2.2.9
- v2.2.8
- v2.2.7
- v2.2.6
- v2.2.5
- v2.2.4
- v2.2.3
- v2.2.2
- v2.2.1
- v2.2.0
- v2.1.0
- v2.0.3
- v2.0.2
- v2.0.1
- v2.0.0
- 1.1.x-dev
- v1.1.0
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- v0.6.1
- v0.6.0
- v0.5.10
- v0.5.9
- v0.5.8
- v0.5.7
- v0.5.6
- v0.5.5
- v0.5.4
- v0.5.3
- v0.5.2
- v0.5.1
- v0.5.0
- v0.4.16
- v0.4.15
- v0.4.14
- v0.4.13
- v0.4.12
- v0.4.11
- v0.4.10
- v0.4.9
- v0.4.8
- v0.4.7
- v0.4.6
- v0.4.5
- v0.4.4
- v0.4.3
- v0.4.2
- v0.4.1
- v0.4.0
- v0.3.5
- v0.3.4
- v0.3.3
- v0.3.2
- v0.3.1
- v0.3.0
- v0.2.2
- v0.2.1
- v0.2
- v0.1
This package is auto-updated.
Last update: 2024-10-23 16:08:36 UTC
README
HTML5DOMDocument extends the native DOMDocument library. It fixes some bugs and adds some new functionality.
Why use?
- Preserves html entities (DOMDocument does not)
- Preserves void tags (DOMDocument does not)
- Allows inserting HTML code that moves the correct parts to their proper places (head elements are inserted in the head, body elements in the body)
- Allows querying the DOM with CSS selectors (currently available: *, tagname, tagname#id, #id, tagname.classname, .classname, tagname.classname.classname2, .classname.classname2, tagname[attribute-selector], [attribute-selector], "div, p", div p, div > p, div + p and p ~ ul.)
- Adds support for element->classList.
- Adds support for element->innerHTML.
- Adds support for element->outerHTML.
Install via Composer
composer require "ivopetkov/html5-dom-document-php:2.*"
Documentation
Full documentation is available as part of this repository.
Examples
Use just like you should use DOMDocument:
<?php require 'vendor/autoload.php'; $dom = new IvoPetkov\HTML5DOMDocument(); $dom->loadHTML('<!DOCTYPE html><html><body>Hello</body></html>'); echo $dom->saveHTML();
Query the document with CSS selectors and get the innerHTML and the outerHTML of the elements:
$dom = new IvoPetkov\HTML5DOMDocument(); $dom->loadHTML('<!DOCTYPE html><html><body><h1>Hello</h1><div class="content">This is some text</div></body></html>'); echo $dom->querySelector('h1')->innerHTML; // Hello echo $dom->querySelector('.content')->outerHTML; // <div class="content">This is some text</div>
Insert HTML code into a HTML document (other HTML code):
$dom = new IvoPetkov\HTML5DOMDocument(); $dom->loadHTML(' <!DOCTYPE html> <html> <head> <style>...</style> </head> <body> <h1>Hello</h1> </body> </html> '); $dom->insertHTML(' <html> <head> <script>...</script> </head> <body> <div>This is some text</div> </body> </html> '); echo $dom->saveHTML(); // <!DOCTYPE html> // <html> // <head> // <style>...</style> // <script>...</script> // </head> // <body> // <h1>Hello</h1> // <div>This is some text</div> // </body> // </html>
Manipulate the values of the class attribute of an element:
$dom = new IvoPetkov\HTML5DOMDocument(); $dom->loadHTML('<div class="class1"></div>'); echo $dom->querySelector('div')->classList->add('class2');
License
This project is licensed under the MIT License. See the license file for more information.
Contributing
Feel free to open new issues and contribute to the project. Let's make it awesome and let's do in a positive way.
Authors
This library is created and maintained by Ivo Petkov (ivopetkov.com) and some awesome folks.