Files
doc-fr/reference/simplexml/functions/simplexml-element-attributes.xml
Yannick Torres f5c7546101 sync with EN version
git-svn-id: https://svn.php.net/repository/phpdoc/fr/trunk@166904 c90b9560-bf6c-de11-be94-00142212c4b1
2004-08-20 16:20:28 +00:00

71 lines
1.7 KiB
XML

<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.6 $ -->
<!-- EN-Revision: 1.4 Maintainer: yannick Status: ready -->
<refentry id='function.simplexml-element-attributes'>
<refnamediv>
<refname>SimpleXMLElement->attributes</refname>
<refpurpose>Identifie les attributs d'un élément</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<methodsynopsis>
<type>object SimpleXMLElement</type><methodname>simplexml_element->attributes</methodname>
<methodparam><type>string</type><parameter>data</parameter></methodparam>
</methodsynopsis>
<para>
<function>simplexml_element->attributes</function> fournit les attributs
et les valeurs définies dans une balise XML.
</para>
&simplexml.iteration;
<para>
<example>
<title>Interprétation d'une chaîne XML</title>
<programlisting role="php">
<![CDATA[
<?php
$string = <<<XML
<a>
<foo name="one" game="lonely">1</foo>
</a>
XML;
$xml = simplexml_load_string($string);
foreach($xml->foo[0]->attributes() as $a => $b) {
echo $a, '="', $b, "\"\n";
}
?>
]]>
</programlisting>
&example.outputs;
<screen>
<![CDATA[
name="one"
game="lonely"
]]>
</screen>
</example>
</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:"../../../../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
-->