| Nuno Lopes 2005-09-25, 6:57 pm |
| nlopess Sun Sep 25 12:29:15 2005 EDT
Added files:
/phpdoc/en/reference/unicode constants.xml ini.xml
Modified files:
/phpdoc/en/reference/unicode reference.xml
Log:
add constants and INI options
http://cvs.php.net/diff.php/phpdoc/...1.1&r2=1.2&ty=u
Index: phpdoc/en/reference/unicode/reference.xml
diff -u phpdoc/en/reference/unicode/reference.xml:1.1 phpdoc/en/reference/unicode/reference.xml:1.2
--- phpdoc/en/reference/unicode/reference.xml:1.1 Fri Sep 9 18:12:34 2005
+++ phpdoc/en/reference/unicode/reference.xml Sun Sep 25 12:29:13 2005
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.1 $ -->
+<!-- $Revision: 1.2 $ -->
<!-- Purpose: international -->
<!-- Membership: core, external -->
@@ -32,7 +32,8 @@
</section>
&reference.unicode.configure;
- <!--&reference.unicode.ini;-->
+ &reference.unicode.ini;
+ &reference.unicode.constants;
</partintro>
&reference.unicode.functions;
http://cvs.php.net/co.php/phpdoc/en...s.xml?r=1.1&p=1
Index: phpdoc/en/reference/unicode/constants.xml
+++ phpdoc/en/reference/unicode/constants.xml
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.1 $ -->
<section id="unicode.constants">
&reftitle.constants;
&extension.constants;
<para>
<table>
<title/>
<tgroup cols="3">
<thead>
<row>
<entry>constant</entry>
<entry>value</entry>
<entry>description</entry>
</row>
</thead>
<tbody>
<row>
<entry>U_INVALID_STOP</entry>
<entry>0</entry>
<entry>stop at first invalid character</entry>
</row>
<row>
<entry>U_INVALID_SKIP</entry>
<entry>1</entry>
<entry>skip invalid characters</entry>
</row>
<row>
<entry>U_INVALID_SUBSTITUTE</entry>
<entry>2</entry>
<entry>replace invalid characters</entry>
</row>
<row>
<entry>U_INVALID_ESCAPE</entry>
<entry>3</entry>
<entry>escape invalid characters</entry>
</row>
</tbody>
</tgroup>
</table>
</para>
</section>
<!-- 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
-->
http://cvs.php.net/co.php/phpdoc/en...i.xml?r=1.1&p=1
Index: phpdoc/en/reference/unicode/ini.xml
+++ phpdoc/en/reference/unicode/ini.xml
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.1 $ -->
<section id="unicode.configuration">
&reftitle.runtime;
&extension.runtime;
<para>
<table>
<title>Unicode Configuration Options</title>
<tgroup cols="4">
<thead>
<row>
<entry>Name</entry>
<entry>Default</entry>
<entry>Changeable</entry>
<entry>Changelog</entry>
</row>
</thead>
<tbody>
<row>
<entry>unicode.fallback_encoding</entry>
<entry>NULL</entry>
<entry>PHP_INI_ALL</entry>
<entry>Available since PHP 6.0.0.</entry>
</row>
<row>
<entry>unicode.from_error_mode</entry>
<entry>2</entry>
<entry>PHP_INI_ALL</entry>
<entry>Available since PHP 6.0.0.</entry>
</row>
<row>
<entry>unicode.from_error_subst_char</entry>
<entry>"3f"</entry>
<entry>PHP_INI_ALL</entry>
<entry>Available since PHP 6.0.0.</entry>
</row>
<row>
<entry>unicode.http_input_encoding</entry>
<entry>NULL</entry>
<entry>PHP_INI_ALL</entry>
<entry>Available since PHP 6.0.0.</entry>
</row>
<row>
<entry>unicode.output_encoding</entry>
<entry>NULL</entry>
<entry>PHP_INI_ALL</entry>
<entry>Available since PHP 6.0.0.</entry>
</row>
<row>
<entry>unicode.runtime_encoding</entry>
<entry>NULL</entry>
<entry>PHP_INI_ALL</entry>
<entry>Available since PHP 6.0.0.</entry>
</row>
<row>
<entry>unicode.script_encoding</entry>
<entry>NULL</entry>
<entry>PHP_INI_ALL</entry>
<entry>Available since PHP 6.0.0.</entry>
</row>
<row>
<entry>unicode.semantics</entry>
<entry>off</entry>
<entry>PHP_INI_PERDIR</entry>
<entry>Available since PHP 6.0.0.</entry>
</row>
</tbody>
</tgroup>
</table>
&ini.php.constants;
</para>
&ini.descriptions.title;
<para>
<variablelist>
<varlistentry id="ini.unicode.output-encoding">
<term>
<parameter>unicode.output_encoding</parameter>
<type>string</type>
</term>
<listitem>
<para>
Default encoding for output.
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
</section>
<!-- 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
-->
|