| Philip Olson 2006-08-24, 6:58 pm |
| philip Fri Aug 25 00:05:46 2006 UTC
Modified files:
/phpdoc/en/reference/image/functions imagettftext.xml
Log:
Hexadecimal characters are supported as of 5.2.0. Named entities are not supported.
http://cvs.php.net/viewvc.cgi/phpdo...9&diff_format=u
Index: phpdoc/en/reference/image/functions/imagettftext.xml
diff -u phpdoc/en/reference/image/functions/imagettftext.xml:1.18 phpdoc/en/reference/image/functions/imagettftext.xml:1.19
--- phpdoc/en/reference/image/functions/imagettftext.xml:1.18 Mon Jan 30 14:32:54 2006
+++ phpdoc/en/reference/image/functions/imagettftext.xml Fri Aug 25 00:05:45 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
-<!-- $Revision: 1.18 $ -->
+<!-- $Revision: 1.19 $ -->
<!-- splitted from ./en/functions/image.xml, last change in rev 1.2 -->
<refentry id="function.imagettftext">
<refnamediv>
@@ -127,7 +127,12 @@
<simpara>
May include decimal numeric character references (of the form:
€) to access characters in a font beyond position 127.
- Strings in UTF-8 encoding can be passed directly.
+ The hexadecimal format (like ©) is supported as of PHP 5.2.0.
+ Strings in UTF-8 encoding can be passed directly.
+ </simpara>
+ <simpara>
+ Named entities, such as ©, are not supported. Consider using <function>html_entity_decode</function>
+ to decode these named entities into UTF-8 strings (html_entity_decode() supports this as of PHP 5.0.0).
</simpara>
<simpara>
If a character is used in the string which is not supported by the
|