mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-19 10:28:54 +00:00

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@141201 c90b9560-bf6c-de11-be94-00142212c4b1
64 lines
2.1 KiB
XML
64 lines
2.1 KiB
XML
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
<!-- $Revision: 1.7 $ -->
|
|
<!-- splitted from ./en/functions/xml.xml, last change in rev 1.24 -->
|
|
<refentry id='function.xml-parser-create-ns'>
|
|
<refnamediv>
|
|
<refname>xml_parser_create_ns</refname>
|
|
<refpurpose>
|
|
Create an XML parser with namespace support
|
|
</refpurpose>
|
|
</refnamediv>
|
|
<refsect1>
|
|
<title>Description</title>
|
|
<methodsynopsis>
|
|
<type>resource</type><methodname>xml_parser_create_ns</methodname>
|
|
<methodparam choice="opt"><type>string</type><parameter>encoding</parameter></methodparam>
|
|
<methodparam choice="opt"><type>string</type><parameter>separator</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
<function>xml_parser_create_ns</function> creates a new XML parser
|
|
with XML namespace support and returns a resource handle referencing
|
|
it to be used by the other XML functions.
|
|
</para>
|
|
<para>
|
|
With a namespace aware parser tag parameters passed to the
|
|
various handler functions will consist of namespace and tag name
|
|
separated by the string specified in
|
|
<parameter>seperator</parameter> or <literal>':'</literal> by
|
|
default.
|
|
</para>
|
|
<para>
|
|
The optional <parameter>encoding</parameter> specifies the
|
|
character encoding of the XML input to be parsed. Supported
|
|
encodings are <literal>"ISO-8859-1"</literal>, which is also
|
|
the default if no <parameter>encoding</parameter> is specified,
|
|
<literal>"UTF-8"</literal> and <literal>"US-ASCII"</literal>.
|
|
</para>
|
|
<para>
|
|
See also
|
|
<function>xml_parser_create</function>, and
|
|
<function>xml_parser_free</function>.
|
|
</para>
|
|
</refsect1>
|
|
</refentry>
|
|
|
|
<!-- 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
|
|
-->
|