1
0
mirror of https://github.com/php/doc-ja.git synced 2026-03-24 07:02:08 +01:00
Files
archived-doc-ja/reference/info/functions/set-include-path.xml
2020-12-27 04:34:12 +00:00

121 lines
3.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<!-- EN-Revision: 0c9c2dd669fe9395eaa73d487fbd160f9057429a Maintainer: hirokawa Status: ready -->
<!-- CREDITS: takagi -->
<refentry xml:id="function.set-include-path" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>set_include_path</refname>
<refpurpose>include_path 設定オプションをセットする</refpurpose>
</refnamediv>
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
<type class="union"><type>string</type><type>false</type></type><methodname>set_include_path</methodname>
<methodparam><type>string</type><parameter>include_path</parameter></methodparam>
</methodsynopsis>
<para>
<link linkend="ini.include-path">include_path</link>
設定オプションの値を、このスクリプト内でだけ変更します。
</para>
</refsect1>
<refsect1 role="parameters">
&reftitle.parameters;
<para>
<variablelist>
<varlistentry>
<term><parameter>include_path</parameter></term>
<listitem>
<para>
<link linkend="ini.include-path">include_path</link>
の新しい値。
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
</refsect1>
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
成功した場合に元の <link linkend="ini.include-path">include_path</link>
の値、&return.falseforfailure;
</para>
</refsect1>
<refsect1 role="examples">
&reftitle.examples;
<para>
<example>
<title><function>set_include_path</function> の例</title>
<programlisting role="php">
<![CDATA[
<?php
set_include_path('/usr/lib/pear');
// または ini_set を使用します
ini_set('include_path', '/usr/lib/pear');
?>
]]>
</programlisting>
</example>
</para>
<para>
<example>
<title>include path の追加</title>
<para>
<constant>PATH_SEPARATOR</constant> 定数を利用することで、
オペレーティングシステムに依存せずに include path を追加することが可能です。
</para>
<para>
この例では、既存の <literal>include_path</literal> の最後に
<filename>/usr/lib/pear</filename> を追加します。
</para>
<programlisting role="php">
<![CDATA[
<?php
$path = '/usr/lib/pear';
set_include_path(get_include_path() . PATH_SEPARATOR . $path);
?>
]]>
</programlisting>
</example>
</para>
</refsect1>
<refsect1 role="seealso">
&reftitle.seealso;
<para>
<simplelist>
<member><function>ini_set</function></member>
<member><function>get_include_path</function></member>
<member><function>restore_include_path</function></member>
<member><function>include</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
-->