mirror of
https://github.com/php/doc-es.git
synced 2026-03-26 08:22:08 +01:00
git-svn-id: https://svn.php.net/repository/phpdoc/es/trunk@306450 c90b9560-bf6c-de11-be94-00142212c4b1
130 lines
4.1 KiB
XML
130 lines
4.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: 96c9d88bad9a7d7d44bfb7f26c226df7ee9ddf26 Maintainer: carlos Status: ready -->
|
|
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.xml-parser-set-option">
|
|
<refnamediv>
|
|
<refname>xml_parser_set_option</refname>
|
|
<refpurpose>Configura las opciones en un intérprete XML</refpurpose>
|
|
</refnamediv>
|
|
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<type>bool</type><methodname>xml_parser_set_option</methodname>
|
|
<methodparam><type>resource</type><parameter>parser</parameter></methodparam>
|
|
<methodparam><type>int</type><parameter>option</parameter></methodparam>
|
|
<methodparam><type>mixed</type><parameter>value</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
Configura una opción en un intérprete XML.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
<para>
|
|
<variablelist>
|
|
<varlistentry>
|
|
<term><parameter>parser</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
Identificador del recurso del intérprete XML sobre el que se va a configurar el valor de la opción.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><parameter>option</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
Cual es la opción para configurar. Véase más abajo.
|
|
</para>
|
|
<para>
|
|
Estan disponibles las siguientes opciones:
|
|
<table>
|
|
<title>Opciones del intérprete XML</title>
|
|
<tgroup cols="3">
|
|
<thead>
|
|
<row>
|
|
<entry>Option constant</entry>
|
|
<entry>Data type</entry>
|
|
<entry>Description</entry>
|
|
</row>
|
|
</thead>
|
|
<tbody>
|
|
<row>
|
|
<entry><constant>XML_OPTION_CASE_FOLDING</constant></entry>
|
|
<entry>integer</entry>
|
|
<entry>
|
|
Controla si <link linkend="xml.case-folding">case-folding</link> está activada para este intérprete XML. Por defecto activado.
|
|
|
|
</entry>
|
|
</row>
|
|
<row>
|
|
<entry><constant>XML_OPTION_SKIP_TAGSTART</constant></entry>
|
|
<entry>integer</entry>
|
|
<entry>
|
|
Especifica el número de caracteres que seran omitidos al principio del nombre de una etiqueta.
|
|
</entry>
|
|
</row>
|
|
<row>
|
|
<entry><constant>XML_OPTION_SKIP_WHITE</constant></entry>
|
|
<entry>integer</entry>
|
|
<entry>
|
|
Especifica si hay que omitir los valores que consistan en espacios en blanco.
|
|
</entry>
|
|
</row>
|
|
<row>
|
|
<entry><constant>XML_OPTION_TARGET_ENCODING</constant></entry>
|
|
<entry>string</entry>
|
|
<entry>
|
|
Configura cual será el <link linkend="xml.encoding">target encoding</link> (codificación de caracteres de salida) para usar en este intérprete XML. Por defecto se establece la misma codificación de la fuente fuente usada por <function>xml_parser_create</function>. Las codificaciones de destino soportadas son <literal>ISO-8859-1</literal>, <literal>US-ASCII</literal> y <literal>UTF-8</literal>.
|
|
</entry>
|
|
</row>
|
|
</tbody>
|
|
</tgroup>
|
|
</table>
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><parameter>value</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
El nuevo valor para la opción.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
Devuelve &true; si se ha establecido el nuevo valor para la opción. Puede devolver &false; si: <parameter>parser</parameter> no se refiere a un intérprete válido, o si la opción no se ha podido configurar.
|
|
</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:"~/.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
|
|
-->
|