mirror of
https://github.com/php/doc-es.git
synced 2026-03-24 15:32:36 +01:00
72 lines
2.0 KiB
XML
72 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: PhilDaiguille Status: ready -->
|
|
<!-- Reviewed: yes -->
|
|
|
|
<chapter xml:id="xml.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
&reftitle.setup;
|
|
|
|
<!-- {{{ Requirements -->
|
|
<section xml:id="xml.requirements">
|
|
&reftitle.required;
|
|
&libxml.required;
|
|
<para>
|
|
Esta extensión PHP utiliza <productname>expat compat layer</productname>
|
|
por omisión. Asimismo puede utilizar <productname>expat</productname>, que está
|
|
disponible en <link xlink:href="&url.expat;">&url.expat;</link>.
|
|
El fichero Makefile incluido con <productname>expat</productname>
|
|
no construye una biblioteca por omisión: es necesario utilizar
|
|
la siguiente línea:
|
|
<programlisting role="makefile">
|
|
<![CDATA[
|
|
libexpat.a: $(OBJS)
|
|
ar -rc $@ $(OBJS)
|
|
ranlib $@
|
|
]]>
|
|
</programlisting>
|
|
Un paquete RPM fuente de expat está disponible en
|
|
<link xlink:href="&url.expat.rpm;">&url.expat.rpm;</link>.
|
|
</para>
|
|
</section>
|
|
<!-- }}} -->
|
|
|
|
<!-- {{{ Installation -->
|
|
&reference.xml.configure;
|
|
<!-- }}} -->
|
|
|
|
<!-- {{{ Resources -->
|
|
<section xml:id="xml.resources">
|
|
&reftitle.resources;
|
|
<para>
|
|
Anterior a PHP 8.0.0, el recurso <literal>xml</literal> es retornado por
|
|
<function>xml_parser_create</function> y
|
|
<function>xml_parser_create_ns</function>, y representa
|
|
un analizador XML para ser utilizado con las otras funciones de esta
|
|
extensión.
|
|
</para>
|
|
</section>
|
|
<!-- }}} -->
|
|
|
|
</chapter>
|
|
|
|
<!-- 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
|
|
-->
|