mirror of
https://github.com/php/doc-es.git
synced 2026-03-24 07:22:16 +01:00
72 lines
2.3 KiB
XML
72 lines
2.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: c1f37a6c270aadbbb3da56a3973ffd62197adf2b Maintainer: PhilDaiguille Status: ready -->
|
|
<!-- Reviewed: yes Maintainer: seros -->
|
|
|
|
<book xml:id="book.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" annotations="interactive">
|
|
<?phpdoc extension-membership="bundledexternal" ?>
|
|
<title>Analizador XML</title>
|
|
|
|
<!-- {{{ preface -->
|
|
<preface xml:id="intro.xml">
|
|
&reftitle.intro;
|
|
<para>
|
|
XML (eXtensible Markup Language) es un formato de datos para el intercambio
|
|
en la web de documentos estructurados. Es un estándar definido por el
|
|
World Wide Web consortium (W3C). Se puede encontrar más información sobre XML y
|
|
tecnologías relacionadas en <link
|
|
xlink:href="&url.xml;">&url.xml;</link>.
|
|
</para>
|
|
<para>
|
|
Esta extensión de PHP implementa el soporte para <productname>expat</productname>
|
|
de James Clark en PHP. Este conjunto de herramientas permite analizar,
|
|
pero no validar, documentos XML. Es compatible con tres
|
|
<link linkend="xml.encoding">codificaciones de caracteres</link> fuente,
|
|
también proporcionadas por PHP: <literal>US-ASCII</literal>,
|
|
<literal>ISO-8859-1</literal> y <literal>UTF-8</literal>.
|
|
No está soportada <literal>UTF-16</literal>.
|
|
</para>
|
|
<para>
|
|
Esta extensión permite <link
|
|
linkend="function.xml-parser-create">crear analizadores XML</link>
|
|
y luego definir <emphasis>gestores</emphasis> para los diferentes
|
|
eventos XML. Cada analizador XML también tiene algunos <link
|
|
linkend="function.xml-parser-set-option">parámetros</link> que se
|
|
pueden ajustar.
|
|
</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
|
|
-->
|