1
0
mirror of https://github.com/php/doc-ja.git synced 2026-04-23 07:58:01 +02:00
Files
archived-doc-ja/reference/simplexml/functions/simplexml-element-attributes.xml
T
Hideyuki Shimooka 1416bad275 translation updated
git-svn-id: https://svn.php.net/repository/phpdoc/ja/trunk@190409 c90b9560-bf6c-de11-be94-00142212c4b1
2005-07-10 10:39:43 +00:00

76 lines
1.8 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 1.3 $ -->
<!-- EN-Revision: 1.6 Maintainer: hirokawa Status: ready -->
<!-- CREDITS: shimooka -->
<refentry id='function.simplexml-element-attributes'>
<refnamediv>
<refname>SimpleXMLElement->attributes</refname>
<refpurpose>
要素の属性を定義する
</refpurpose>
</refnamediv>
<refsect1>
<title>説明</title>
<methodsynopsis>
<type>SimpleXMLElement</type><methodname>simplexml_element->attributes</methodname>
<methodparam choice="opt"><type>string</type><parameter>data</parameter></methodparam>
</methodsynopsis>
<para>
この関数は、XMLタグの中で定義された属性とその値を取得します。
</para>
&simplexml.iteration;
<para>
<example>
<title>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>
<para>
このスクリプトの出力は次のようになります
</para>
<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
-->