mirror of
https://github.com/php/doc-es.git
synced 2026-03-24 07:22:16 +01:00
181 lines
5.1 KiB
XML
181 lines
5.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- EN-Revision: c142be811735a5542c8a2e4c4ed2f81e8cc3acc6 Maintainer: PhilDaiguille Status: ready -->
|
|
<!-- Reviewed: no Maintainer: Marqitos -->
|
|
<refentry xml:id="function.simplexml-load-string" xmlns="http://docbook.org/ns/docbook">
|
|
<refnamediv>
|
|
<refname>simplexml_load_string</refname>
|
|
<refpurpose>
|
|
Interpreta un string XML en un objeto
|
|
</refpurpose>
|
|
</refnamediv>
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<type class="union"><type>SimpleXMLElement</type><type>false</type></type><methodname>simplexml_load_string</methodname>
|
|
<methodparam><type>string</type><parameter>data</parameter></methodparam>
|
|
<methodparam choice="opt"><type class="union"><type>string</type><type>null</type></type><parameter>class_name</parameter><initializer><constant>SimpleXMLElement::class</constant></initializer></methodparam>
|
|
<methodparam choice="opt"><type>int</type><parameter>options</parameter><initializer>0</initializer></methodparam>
|
|
<methodparam choice="opt"><type>string</type><parameter>namespace_or_prefix</parameter><initializer>""</initializer></methodparam>
|
|
<methodparam choice="opt"><type>bool</type><parameter>is_prefix</parameter><initializer>&false;</initializer></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
Convierte la cadena XML <parameter>data</parameter> y
|
|
devuelve un objeto de la clase <type>SimpleXMLElement</type>.
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
<para>
|
|
<variablelist>
|
|
<varlistentry>
|
|
<term><parameter>data</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
Una cadena XML válida
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><parameter>class_name</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
Puede utilizarse el parámetro opcional y, así,
|
|
la función <function>simplexml_load_string</function>
|
|
devolverá un objeto de la clase especificada. Esta clase debe
|
|
extender la clase <type>SimpleXMLElement</type>.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><parameter>options</parameter></term>
|
|
<listitem>
|
|
&dom.parameter.options;
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><parameter>namespace_or_prefix</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
Prefijo o URI del espacio de nombres.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><parameter>is_prefix</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
&true; si <parameter>namespace_or_prefix</parameter> es un prefijo,
|
|
&false; si es la URI.
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
Devuelve un &object; de la clase <type>SimpleXMLElement</type>
|
|
cuyas propiedades contienen los datos del documento XML, &return.falseforfailure;.
|
|
</para>
|
|
&return.falseproblem;
|
|
</refsect1>
|
|
|
|
<refsect1 role="errors"><!-- {{{ -->
|
|
&reftitle.errors;
|
|
<para>
|
|
Produce un mensaje de error de nivel <constant>E_WARNING</constant>
|
|
para cada error encontrado en los datos XML.
|
|
</para>
|
|
<tip>
|
|
<para>
|
|
Utilice la función <function>libxml_use_internal_errors</function>
|
|
para suprimir todos los errores XML, y la función
|
|
<function>libxml_get_errors</function> para recorrerlos.
|
|
</para>
|
|
</tip>
|
|
</refsect1><!-- }}} -->
|
|
|
|
<refsect1 role="examples">
|
|
&reftitle.examples;
|
|
<para>
|
|
<example>
|
|
<title>Convertir una cadena XML</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
$string = <<<XML
|
|
<?xml version='1.0'?>
|
|
<document>
|
|
<title>Forty What?</title>
|
|
<from>Joe</from>
|
|
<to>Jane</to>
|
|
<body>
|
|
I know that's the answer -- but what's the question?
|
|
</body>
|
|
</document>
|
|
XML;
|
|
|
|
$xml = simplexml_load_string($string);
|
|
|
|
print_r($xml);
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
&example.outputs;
|
|
<screen>
|
|
<![CDATA[
|
|
SimpleXMLElement Object
|
|
(
|
|
[title] => Forty What?
|
|
[from] => Joe
|
|
[to] => Jane
|
|
[body] =>
|
|
I know that's the answer -- but what's the question?
|
|
)
|
|
]]>
|
|
</screen>
|
|
<simpara>
|
|
A partir de ahí, puede utilizarse <literal>$xml->body</literal>
|
|
y cualquier otro elemento.
|
|
</simpara>
|
|
</example>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="seealso">
|
|
&reftitle.seealso;
|
|
<para>
|
|
<simplelist>
|
|
<member><function>simplexml_load_file</function></member>
|
|
<member><methodname>SimpleXMLElement::__construct</methodname></member>
|
|
<member><xref linkend="simplexml.examples-errors"/></member>
|
|
<member><function>libxml_use_internal_errors</function></member>
|
|
<member><xref linkend="simplexml.examples-basic"/></member>
|
|
</simplelist>
|
|
</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
|
|
-->
|