mirror of
https://github.com/php/doc-es.git
synced 2026-03-28 01:12:20 +01:00
git-svn-id: https://svn.php.net/repository/phpdoc/es/trunk@313550 c90b9560-bf6c-de11-be94-00142212c4b1
63 lines
2.2 KiB
XML
63 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: ac04b2ea214243eaef651b87216b9841d13cd492 Maintainer: chuso Status: ready -->
|
|
|
|
<!-- Membership: bundled, external -->
|
|
|
|
<book xml:id="book.xml" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
<title>Parser XML</title>
|
|
|
|
<!-- {{{ preface -->
|
|
<preface xml:id="intro.xml">
|
|
&reftitle.intro;
|
|
<para>
|
|
XML (eXtensible Markup Language) es un formato de datos para el intercambio de documento en la web. Es un standard definido por el World Wide Web consortium (W3C). Se puede encontrar más información sobre XML y las tecnologias relacionadas en <link
|
|
xlink:href="&url.xml;">&url.xml;</link>.
|
|
</para>
|
|
<para>
|
|
Esta extensión de PHP implementa soporte para el <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> también provistas 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 le permite <link
|
|
linkend="function.xml-parser-create">crear parsers XML</link>
|
|
y luego definir <emphasis>controladores</emphasis> para los diferentes eventos XML.
|
|
Cada parser 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;
|
|
|
|
</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
|
|
--> |