Add note about when the second arg was added

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@32573 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Rasmus Lerdorf 2000-09-12 18:13:30 +00:00
parent 35d9f0c176
commit 0557ed9307

View file

@ -765,7 +765,8 @@ $original = strtr ($str, $trans);
and single quotes unconverted.
</para>
<para>
At present, the ISO-8859-1 character set is used.
At present, the ISO-8859-1 character set is used. Note that the optional
second argument was added in PHP 3.0.17 and PHP 4.0.3.
</para>
<para>
See also <function>htmlspecialchars</function> and
@ -847,9 +848,10 @@ $new = htmlspecialchars("&lt;a href='test'&gt;Test&lt;/a&gt;", ENT_QUOTES);
</example>
</para>
<para>
Note that this functions does not translate anything beyond what
Note that this function does not translate anything beyond what
is listed above. For full entity translation, see
<function>htmlentities</function>.
<function>htmlentities</function>. Also note that the optional second
argument was added in PHP 3.0.17 and PHP 4.0.3.
</para>
<para>
See also <function>htmlentities</function> and