mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
- 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:
parent
a7b98eb2db
commit
de8016e755
2 changed files with 9 additions and 4 deletions
|
@ -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 &#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 &#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>
|
||||
|
|
|
@ -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 &#FFFD; (otherwise).
|
||||
Replace invalid code points for the given document type with a
|
||||
Unicode Replacement Character U+FFFD (UTF-8) or &#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>
|
||||
|
|
Loading…
Reference in a new issue