All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog.
- Added unit test for bug reports
- Added unit test for character sets UTF-8, CP1251 and CP1252 (#142)
- Added support for meta charset to parse_charset
- Added detection for CP1251 to parse_charset, using iconv
- Added LICENSE file (MIT) to the project root
- Added functions to
simple_html_dom_node
remove
: Removes the current node recursively from the DOM treeremoveChild
: Removes a child node recursively from the DOM treehasClass
: Checks if the current node has the specified class nameaddClass
: Adds one or more classes to the current noderemoveClass
: Removes one or more classes from the current nodesave
: Saves the current node to disk
- Changed manual from custom implementation to MkDocs (https://www.mkdocs.org/)
- Fixed warning when trying to clear() the DOM on a null nodes list (#153)
- Fixed missing whitespace when returning plaintext (#163)
- Fixed broken detection of duplicate attributes (#166)
- Fixed broken detection of CP1252 (ISO-8859-1) documents (#142)
- Fixed error using next-sibling combinator ('E + F') on last child
- Fixed selector parsing for attribute selectors ending on "s" or "i" (#169)
- Fixed various bugs related to parsing classes and ids
- Added documentation for
simple_html_dom_node::find
- Added documentation for
simple_html_dom_node::parse_selector
- Added documentation for
simple_html_dom_node::seek
- Added documentation for
simple_html_dom_node::match
- Added unit tests for bug reports
- Added unit tests for CSS selectors
- Added ability to define constants before simple_html_dom does
- 'DEFAULT_TARGET_CHARSET'
- 'DEFAULT_BR_TEXT'
- 'DEFAULT_SPAN_TEXT'
- 'MAX_FILE_SIZE'
- Added support for CSS combinators
- Added support for Child Combinator (
>
) - Added support for Next Sibling Combinator (
+
) - Added support for Subsequent Sibling Combinator (
~
)
- Added support for Child Combinator (
- Added support for multiclass selectors (
.class.class.class
) - Added support for multiattribute selectors (
[attr1][attr2][attribute3]
) - Added support for attribute selectors
- Added support for pipe selectors (
|=
) - Added support for tilde selectors (
~=
) - Added support for case sensitivity selectors (
i
ands
)
- Added support for pipe selectors (
- Added unit tests for PHP compatibility to PHP 5.6+
- Added coding standard using PHP_CodeSniffer
- Removed automatic filtering of 'tbody' selectors (#79)
Remove 'tbody' from all selectors to maintain the previous state!
- Coding standard using PHP_CodeSniffer
- Fixed broken CSS selector attributes with value "0" (#62)
- Fixed broken simple_html_dom::load_file
- Fixed forward slashes in CSS selector breaks value matching using '*=' (#144)
- Fixed Universal Selectors
- Added code documentation to improve readability
- Added unit tests for
simple_html_dom::$self_closing_tags
- Added unit tests for
simple_html_dom::$optional_closing_tags
- Added unit tests for bug reports
- Added unit tests for memory management of the parser
- Added bit flags to
simple_html_dom::load()
- Added bit flag
HDOM_SMARTY_AS_TEXT
to optionally filter Smarty scripts (#154)
Note: Smarty scripts are no longer filtered by default!\
- Added bit flag
- Added build script to automate releases
- Added support for attributes without whitespace to separate them
- Improved documentation and readability for
$self_closing_tags
- Improved documentation and readability for
$block_tags
- Improved documentation and readability for
$optional_closing_tags
- Updated list of
simple_html_dom::$self_closing_tags
- Removed 'spacer' (obsolete)
- Added 'area'
- Added 'col'
- Added 'meta'
- Added 'param'
- Added 'source'
- Added 'track'
- Added 'wbr'
- Updated list of
simple_html_dom::$optional_closing_tags
- Removed "nobr" (obsolete)
- Added 'th' as closable element to 'td'
- Added 'td' as closable element to 'th'
- Added 'optgroup' with 'optgroup' and 'option' as closable elements
- Added 'optgroup' as closable element to 'option'
- Added 'rp' with 'rp' and 'rt' as closable elements
- Added 'rt' with 'rt' and 'rp' as closable elements
- Clarified meaning of
simple_html_dom->parent
- Changed default
$offset
forfile_get_html()
from -1 to 0 (#161) - Changed
simple_html_dom::load()
to remove script tags before replacing newline characters simple_html_dom_node::text()
no longer adds whitespace to top level span elements (only to sub-elements)simple_html_dom_node::text()
adds blank lines between paragraphs- Normalized line endings in the repository to LF via
.gitattributes
- Improved performance of
simple_html_dom::parse_charset()
by approximately 25% - Improved performance of
simple_html_dom::parse()
by approximately 10%
str_get_html()
is deprecated and should be replaced bynew simple_html_dom()
- Removed protected function
simple_html_dom::copy_until_char_escaped()
- Fixed compatibility issues with PHP 7.3
- Fixed typo (#147)
- Fixed handling of incorrectly escaped text (#160)
- Restore functionality of
$maxLen
infile_get_html()
- Fixed load_file breaks if an error ocurred in another script
- Added some ability to insert and create nodes
- Add ability to search the "noise" array
- Added flag: LOCK_EX while calling "file_put_contents()"
- Added support for detecting the source html character set. This is used to convert characters when plaintext is requested.
- Other little fixes and features, too numerous to categorize
- Error of "file_get_contents()" will be thrown as an exception
- Fixed the typo of "token_blank_t"
- Memory leak fixed
- Supports xpath generated from Firebug
- New method "dump" of "simple_html_dom_node"
- New attribute "xmltext" of "simple_html_dom_node"
- Remove preg_quote on selector match function:
[attribute*=value]
- Element "Comment" will treat as children
- Fixed the problem with
<pre>
- Fixed bug #2207477 (does not load some pages properly)
- Fixed bug #2315853 (Error with character after < sign)
- Negative indexes supports of "find" method, thanks for Vadim Voituk
- Constructor with automatically load contents either text or file/url, thanks for Antcs
- Fully supports wildcard in selectors
- Fixed bug of confusing by the < symbol inside the text
- Fixed bug of dash in selectors
- Fixed bug of
<nobr>
- Fixed bug #2155883 (Nested List Parses Incorrectly)
- Fixed bug #2155113 (error with unclosed html tags)
- New method "getAllAttributes" of "simple_html_dom_node"
- Supports full javascript string in selector:
$e->find("a[onclick=alert('hello')]")
- Changed selector "*=" to case-insentive
- Fixed the bug of selector in some critical conditions
- Fixed the bug of striping php tags
- Fixed the bug of remove_noise()
- Fixed the bug of noise in attributes
- Performance tuning (boost 10%)
- Memory requirement reduced by 25%
- Changed function name from "file_get_dom()" to "file_get_html()"
- Changed function name from "str_get_dom()" to "str_get_html()"
- Fixed bug #2011286 (Error with unclosed html tags)
- Fixed bug #2012551 (Error parsing divs)
- Fixed bug #2020924 (Error for missed tag)
- Fixed bug (problem with
<body>
tag's innertext)
- Supports "multiple class" selector feature:
<div class="a b c"></div>
- New "callback function" feature
- New "multiple selectors" feature: $dom->find('p,a,b')
- New examples
- Supports extract contents from HTML features: $dom->plaintext
- Performance tuning (boost 20%)
- Changed simple_html_dom_node method name from "text()" to "makeup()"
- Fixed the bug of $dom->clear()
- Fixed the bug of text nodes' innertext
- Fixed the bug of comment nodes' innertext
- Fixed the bug of decendent selector with optional tags
- New node type "comment" (eg. $dom->find('comment'))
- Add self-closing tags: 'base', 'spacer'
- New example "simple_html_dom_utility.php"
- File and class name changed (html_dom_parser->simple_html_dom)
- ($dom->save_file) will not support anymore
- Remove example "example_customize_parser.php"
- Fixed the bug of outertext (th)
- Fixed the bug of regular expression escaping chars ($dom->find)
- Fixed the bug while line-breaker and "\t" in tags
- Reference section in manual
- Added traverse section in manual
- Added the solution while server behind proxy in FAQ (Thanks to Yousuke Shaggy)
- New method to remove attribute.
- New DOM operations(first_child, last_child, next_sibling, previous_sibling) (Request #1936000)
- Now file_get_dom supports full file_get_contents parameters
- Fixed the bug of self-closing tags in the end of file
- Fixed the bug of blanks in the end of tag
- Fixed some typo of testcase
- Supports tag name with namespace
- New attribute filters (Thanks to Yousuke Kumakura)
- Refine structure of testcase
- Fix the bug of optional-closing tags
- Fix the bug of parsing the line break next to the tag's name
- Add FAQ section in manual
- Fixed infinity loop while the source content is BAD HTML
- Fixed the bug of adding new attributes to self closing tags
- Fixed the bug of customize parser without $dom->remove_noise()