- Improved documentation of ENT_DISALLOWED.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@324188 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Gustavo André dos Santos Lopes 2012-03-13 14:39:01 +00:00
parent a7b98eb2db
commit de8016e755
2 changed files with 9 additions and 4 deletions

View file

@ -78,8 +78,11 @@
<row>
<entry><constant>ENT_SUBSTITUTE</constant></entry>
<entry>
Replace invalid code unit sequences with a Unicode Replacement Character
U+FFFD (UTF-8) or &amp;#FFFD; (otherwise) instead of returning an empty string.
Replace invalid code points for the given document type with a
Unicode Replacement Character U+FFFD (UTF-8) or &amp;#FFFD;
(otherwise) instead of returning an empty string. This may be
useful, for instance, to ensure the well-formedness of XML documents
with embedded external content.
</entry>
</row>
<row>

View file

@ -122,8 +122,10 @@
<row>
<entry><constant>ENT_DISALLOWED</constant></entry>
<entry>
Replace code unit sequences, which are invalid in the specified document type,
with a Unicode Replacement Character U+FFFD (UTF-8) or &amp;#FFFD; (otherwise).
Replace invalid code points for the given document type with a
Unicode Replacement Character U+FFFD (UTF-8) or &amp;#FFFD;
(otherwise) instead of returning an empty string. This may be
useful, for instance, to ensure the well-formedness of XML documents with embedded external content.
</entry>
</row>
<row>