10000 Warn users of older PHP versions Crawler might not decode HTML entities properly by javiereguiluz · Pull Request #5433 · symfony/symfony-docs · GitHub
[go: up one dir, main page]

Skip to content

Warn users of older PHP versions Crawler might not decode HTML entities properly #5433

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 28, 2015
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Reworded the notice as a caution
  • Loading branch information
javiereguiluz committed Jun 24, 2015
commit 699e63740374ff53c8a53e0a5828ab0d08a45827
7 changes: 6 additions & 1 deletion components/dom_crawler.rst
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,12 @@ and :phpclass:`DOMNode` objects:
$html = $crawler->html();

The ``html`` method is new in Symfony 2.3.
In PHP < 5.3.6 it might return html entities which are not properly decoded.

.. caution::

Due to an issue in PHP, the ``html()`` method returns wrongly decoded HTML
entities in PHP versions lower than 5.3.6 (for example, it returns ``•``
instead of ``&bull;``).

Links
~~~~~
Expand Down
0