mirror of
https://github.com/php/doc-zh.git
synced 2026-03-25 07:32:10 +01:00
63 lines
2.1 KiB
XML
63 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<!-- $Revision$ -->
|
||
<!-- EN-Revision: c1f37a6c270aadbbb3da56a3973ffd62197adf2b Maintainer: Luffy Status: ready -->
|
||
<!-- CREDITS: mowangjuanzi -->
|
||
<book xml:id="book.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" annotations="interactive">
|
||
<title>XML 解析器</title>
|
||
|
||
<!-- {{{ preface -->
|
||
<preface xml:id="intro.xml">
|
||
&reftitle.intro;
|
||
<para>
|
||
XML(可扩展标记语言,英文:eXtensible Markup Language)是一种在互联网上用于结构化文档交互的数据格式。
|
||
它是互联网协会(W3C)定义的标准。与 XML 及其相关技术的信息可访问
|
||
<link xlink:href="&url.xml;">&url.xml;</link>。
|
||
</para>
|
||
<para>
|
||
此 PHP 扩展实现支持 James Clark 使用 PHP 编写的
|
||
<productname>expat</productname>。此工具包可解析(但不能验证)XML 文档。它支持 PHP 所提供的 3
|
||
种<link linkend="xml.encoding">字符编码</link>:<literal>US-ASCII</literal>、<literal>ISO-8859-1</literal>
|
||
和 <literal>UTF-8</literal>。不支持 <literal>UTF-16</literal>。
|
||
</para>
|
||
<para>
|
||
此扩展可<link linkend="function.xml-parser-create">创建 XML 解析器</link>并为不同的 XML
|
||
事件定义 <emphasis>处理程序</emphasis>。每个 XML 解析器还存在少数可以调节的<link
|
||
linkend="function.xml-parser-set-option">参数</link>。
|
||
</para>
|
||
</preface>
|
||
<!-- }}} -->
|
||
|
||
&reference.xml.setup;
|
||
&reference.xml.constants;
|
||
&reference.xml.eventhandlers;
|
||
&reference.xml.case-folding;
|
||
&reference.xml.error-codes;
|
||
&reference.xml.encoding;
|
||
&reference.xml.examples;
|
||
&reference.xml.reference;
|
||
&reference.xml.xmlparser;
|
||
|
||
</book>
|
||
|
||
<!-- 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:"~/.phpdoc/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
|
||
-->
|
||
|