mirror of
https://github.com/php/doc-ja.git
synced 2026-03-24 07:02:08 +01:00
177 lines
5.5 KiB
XML
177 lines
5.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: c142be811735a5542c8a2e4c4ed2f81e8cc3acc6 Maintainer: takagi Status: ready -->
|
|
<!-- CREDITS: hirokawa,shimooka,mumumu -->
|
|
<refentry xml:id="function.simplexml-load-file" xmlns="http://docbook.org/ns/docbook">
|
|
<refnamediv>
|
|
<refname>simplexml_load_file</refname>
|
|
<refpurpose>
|
|
XMLファイルをパースし、オブジェクトに代入する
|
|
</refpurpose>
|
|
</refnamediv>
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<type class="union"><type>SimpleXMLElement</type><type>false</type></type><methodname>simplexml_load_file</methodname>
|
|
<methodparam><type>string</type><parameter>filename</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>
|
|
指定したファイルの中の整形式 XML ドキュメントをオブジェクトに変換します。
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
<para>
|
|
<variablelist>
|
|
<varlistentry>
|
|
<term><parameter>filename</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
XML ファイルへのパス。
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><parameter>class_name</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
<function>simplexml_load_file</function>
|
|
が指定されたクラスのオブジェクトを返すようにするために、
|
|
このオプションのパラメータを使用します。
|
|
このクラスは、<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>
|
|
名前空間プレフィックスあるいは URI。
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><parameter>is_prefix</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
<parameter>namespace_or_prefix</parameter> がプレフィックスである場合に &true;、
|
|
URI である場合に &false;。デフォルトは &false; です。
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
<type>SimpleXMLElement</type> クラスのオブジェクトを返します。
|
|
XML ドキュメント内のデータをプロパティに含みます。
|
|
&return.falseforfailure;。
|
|
</para>
|
|
&return.falseproblem;
|
|
</refsect1>
|
|
|
|
<refsect1 role="errors"><!-- {{{ -->
|
|
&reftitle.errors;
|
|
<para>
|
|
XML データ内でエラーが見つかるたびに <constant>E_WARNING</constant>
|
|
エラーメッセージが発生します。
|
|
</para>
|
|
<tip>
|
|
<para>
|
|
<function>libxml_use_internal_errors</function> ですべての XML エラーを抑制し、
|
|
後から <function>libxml_get_errors</function> で取得することもできます。
|
|
</para>
|
|
</tip>
|
|
</refsect1><!-- }}} -->
|
|
|
|
<refsect1 role="examples">
|
|
&reftitle.examples;
|
|
<para>
|
|
<example>
|
|
<title>XMLドキュメントをパースする</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
// The file examples/book.xml contains an XML document with a root element
|
|
// and at least an element /[root]/title.
|
|
|
|
if (file_exists('examples/book.xml')) {
|
|
$xml = simplexml_load_file('examples/book.xml');
|
|
|
|
print_r($xml);
|
|
} else {
|
|
exit('Failed to open examples/book.xml.');
|
|
}
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
<para>
|
|
このスクリプトは成功時に以下のように出力します。
|
|
</para>
|
|
<screen>
|
|
<![CDATA[
|
|
SimpleXMLElement Object
|
|
(
|
|
[book] => Array
|
|
...
|
|
)
|
|
]]>
|
|
</screen>
|
|
<simpara>
|
|
この時点で、<literal>$xml->title</literal> としたり、
|
|
他の全ての要素にアクセスすることができます。
|
|
</simpara>
|
|
</example>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="seealso">
|
|
&reftitle.seealso;
|
|
<para>
|
|
<simplelist>
|
|
<member><function>simplexml_load_string</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>
|
|
<member><function>libxml_set_streams_context</function></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
|
|
-->
|