1
0
mirror of https://github.com/php/doc-ru.git synced 2026-03-24 07:42:22 +01:00
Files
archived-doc-ru/reference/info/functions/set-include-path.xml
Sergey Panteleev 6d43fd64d7 Исправление форматирования
[skip-spellcheck]
[skip-lint]
2022-12-27 03:42:36 +03:00

123 lines
3.5 KiB
XML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 0c9c2dd669fe9395eaa73d487fbd160f9057429a Maintainer: tmn Status: ready -->
<!-- Reviewed: no -->
<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('include_path', '/usr/lib/pear');
?>
]]>
</programlisting>
</example>
</para>
<para>
<example>
<title>Составление более длинного пути include path</title>
<para>
Используя константу <constant>PATH_SEPARATOR</constant>, можно добавить
к пути вложенные директории независимо от операционной системы.
</para>
<para>
В этом примере мы добавим <filename>/usr/lib/pear</filename> в конец
существующего пути <literal>include_path</literal>.
</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
-->