1
0
mirror of https://github.com/php/doc-ja.git synced 2026-04-29 19:13:26 +02:00
Files
archived-doc-ja/reference/spl/functions/spl-autoload-extensions.xml
T

114 lines
3.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<!-- EN-Revision: 60809ebcf7d0c261b2f00e093e4fab70326ffc7b Maintainer: takagi Status: ready -->
<!-- CREDITS: shimooka,mumumu -->
<refentry xml:id="function.spl-autoload-extensions" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>spl_autoload_extensions</refname>
<refpurpose>spl_autoload 用のデフォルトの拡張子を登録し、それを返す</refpurpose>
</refnamediv>
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
<type>string</type><methodname>spl_autoload_extensions</methodname>
<methodparam choice="opt"><type class="union"><type>string</type><type>null</type></type><parameter>file_extensions</parameter><initializer>&null;</initializer></methodparam>
</methodsynopsis>
<para>
この関数は、<function>__autoload</function> 用の代替関数である
<function>spl_autoload</function>
が使用するファイル拡張子を変更したり調べたりします。
</para>
<note>
<simpara>
ファイルの拡張子の間にスペースを入れるべきではありません。
</simpara>
</note>
</refsect1>
<refsect1 role="parameters">
&reftitle.parameters;
<para>
<variablelist>
<varlistentry>
<term><parameter>file_extensions</parameter></term>
<listitem>
<para>
&null; を指定した場合、現在の拡張子一覧をカンマ区切りで返します。
ファイル拡張子を変更するには、
新しい拡張子一覧をカンマ区切り文字列で表したものを引数に指定して、
この関数を実行します。
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
</refsect1>
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
<function>spl_autoload</function>
のデフォルト拡張子の一覧をカンマ区切り形式で返します。
</para>
</refsect1>
<refsect1 role="changelog">
&reftitle.changelog;
<para>
<informaltable>
<tgroup cols="2">
<thead>
<row>
<entry>&Version;</entry>
<entry>&Description;</entry>
</row>
</thead>
<tbody>
<row>
<entry>8.0.0</entry>
<entry>
<parameter>file_extensions</parameter> は、nullable になりました。
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</para>
</refsect1>
<refsect1 role="examples">
&reftitle.examples;
<example>
<title><function>spl_autoload_extensions</function> の例</title>
<programlisting role="php">
<![CDATA[
<?php
spl_autoload_extensions(".php,.inc");
?>
]]>
</programlisting>
</example>
</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
-->