mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
list of supported charsets, used by htmlentities, html_entity_decode,
htmlspecialchars git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@118784 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
2441b21fff
commit
2045db5a32
1 changed files with 99 additions and 0 deletions
99
reference/strings/charsets.xml
Normal file
99
reference/strings/charsets.xml
Normal file
|
@ -0,0 +1,99 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.1 $ -->
|
||||
<para>
|
||||
Following character sets are supported in PHP 4.3.0 and later.
|
||||
<table>
|
||||
<title>Supported charsets</title>
|
||||
<tgroup cols="2">
|
||||
<thead>
|
||||
<row>
|
||||
<entry>Charset</entry>
|
||||
<entry>Description</entry>
|
||||
</row>
|
||||
</thead>
|
||||
<tbody>
|
||||
<row>
|
||||
<entry>ISO-8859-1</entry>
|
||||
<entry>
|
||||
Western European, Latin-1
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>ISO-8859-15</entry>
|
||||
<entry>
|
||||
Western European, Latin-9. Adds the Euro sign, French and Finish
|
||||
letters missing in Latin-1(ISO-8859-1).
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>UTF-8</entry>
|
||||
<entry>
|
||||
ASCII compatible multi-byte 8-bit Unicode.
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>cp1252</entry>
|
||||
<entry>
|
||||
Windows specific charset for Western European.
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>BIG5</entry>
|
||||
<entry>
|
||||
Traditional Chinese, mainly used in Taiwan.
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>GB2312</entry>
|
||||
<entry>
|
||||
Simplified Chinese, national standard character set.
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>BIG5-HKSCS</entry>
|
||||
<entry>
|
||||
Big5 with Hong Kong extensions, Traditional Chinese.
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>Shift_JIS</entry>
|
||||
<entry>
|
||||
Japanese
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>EUCJP</entry>
|
||||
<entry>
|
||||
Japanese
|
||||
</entry>
|
||||
</row>
|
||||
</tbody>
|
||||
</tgroup>
|
||||
</table>
|
||||
</para>
|
||||
<note>
|
||||
<simpara>
|
||||
Any other character sets are not recognized and ISO-8859-1 will be used
|
||||
instead.
|
||||
</simpara>
|
||||
</note>
|
||||
<!-- Keep this comment at the end of the file
|
||||
Local variables:
|
||||
mode: sgml
|
||||
sgml-omittag:t
|
||||
sgml-shorttag:t
|
||||
sgml-minimize-attributes:nil
|
||||
sgml-always-quote-attributes:t
|
||||
sgml-indent-step:1
|
||||
sgml-indent-data:t
|
||||
indent-tabs-mode:nil
|
||||
sgml-parent-document:nil
|
||||
sgml-default-dtd-file:"../../../manual.ced"
|
||||
sgml-exposed-tags:nil
|
||||
sgml-local-catalogs:nil
|
||||
sgml-local-ecat-files:nil
|
||||
End:
|
||||
vim600: syn=xml fen fdm=syntax fdl=2 si
|
||||
vim: et tw=78 syn=sgml
|
||||
vi: ts=1 sw=1
|
||||
-->
|
Loading…
Reference in a new issue