Sophie

Sophie

distrib > Mandriva > 2008.1 > x86_64 > by-pkgid > 05cd670d8a02b2b4a0ffb1756f2e8308 > files > 4275

php-manual-zh-5.2.4-1mdv2008.1.noarch.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML
><HEAD
><TITLE
>set_include_path</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME"
TITLE="PHP 手册"
HREF="index.html"><LINK
REL="UP"
TITLE="PHP Options&Information"
HREF="ref.info.html"><LINK
REL="PREVIOUS"
TITLE="restore_include_path"
HREF="function.restore-include-path.html"><LINK
REL="NEXT"
TITLE="set_magic_quotes_runtime"
HREF="function.set-magic-quotes-runtime.html"><META
HTTP-EQUIV="Content-type"
CONTENT="text/html; charset=UTF-8"></HEAD
><BODY
CLASS="refentry"
BGCOLOR="#FFFFFF"
TEXT="#000000"
LINK="#0000FF"
VLINK="#840084"
ALINK="#0000FF"
><DIV
CLASS="NAVHEADER"
><TABLE
SUMMARY="Header navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="3"
ALIGN="center"
>PHP 手册</TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="bottom"
><A
HREF="function.restore-include-path.html"
ACCESSKEY="P"
>上一页</A
></TD
><TD
WIDTH="80%"
ALIGN="center"
VALIGN="bottom"
></TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="bottom"
><A
HREF="function.set-magic-quotes-runtime.html"
ACCESSKEY="N"
>下一页</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><H1
><A
NAME="function.set-include-path"
></A
>set_include_path</H1
><DIV
CLASS="refnamediv"
><A
NAME="AEN182377"
></A
><P
>    (PHP 4 &#62;= 4.3.0, PHP 5)</P
>set_include_path&nbsp;--&nbsp;Sets the include_path configuration option</DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN182380"
></A
><H2
>说明</H2
>string <B
CLASS="methodname"
>set_include_path</B
> ( string new_include_path )<BR
></BR
><P
>&#13;   Sets the <A
HREF="ini.core.html#ini.include-path"
>include_path</A
>
   configuration option for the duration of the script.  
  </P
></DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN182390"
></A
><H2
>参数</H2
><P
>&#13;   <P
></P
><DIV
CLASS="variablelist"
><DL
><DT
><CODE
CLASS="parameter"
>new_include_path</CODE
></DT
><DD
><P
>&#13;       The new value for the <A
HREF="ini.core.html#ini.include-path"
>include_path</A
>
      </P
></DD
></DL
></DIV
>
  </P
></DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN182400"
></A
><H2
>返回值</H2
><P
>&#13;   Returns the old <A
HREF="ini.core.html#ini.include-path"
>include_path</A
> on
   success or <TT
CLASS="constant"
><B
>FALSE</B
></TT
> on failure.
  </P
></DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN182405"
></A
><H2
>范例</H2
><P
>&#13;   <TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
CLASS="EXAMPLE"
><TR
><TD
><DIV
CLASS="example"
><A
NAME="AEN182408"
></A
><P
><B
>例 1. <B
CLASS="function"
>set_include_path()</B
> example</B
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
CELLPADDING="5"
><TR
><TD
><code><font color="#000000">
<font color="#0000BB">&lt;?php<br /></font><font color="#FF8000">// Works as of PHP 4.3.0<br /></font><font color="#0000BB">set_include_path</font><font color="#007700">(</font><font color="#DD0000">'/inc'</font><font color="#007700">);<br /><br /></font><font color="#FF8000">// Works in all PHP versions<br /></font><font color="#0000BB">ini_set</font><font color="#007700">(</font><font color="#DD0000">'include_path'</font><font color="#007700">, </font><font color="#DD0000">'/inc'</font><font color="#007700">);<br /></font><font color="#0000BB">?&gt;</font>
</font>
</code></TD
></TR
></TABLE
></DIV
></TD
></TR
></TABLE
>
  </P
><P
>&#13;   <TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
CLASS="EXAMPLE"
><TR
><TD
><DIV
CLASS="example"
><A
NAME="AEN182413"
></A
><P
><B
>例 2. Adding to the include path</B
></P
><P
>&#13;     Making use of the <TT
CLASS="constant"
><B
>PATH_SEPARATOR</B
></TT
> constant, it is
     possible to extend the include path regardless of the operating system.
    </P
><P
>&#13;     In this example we add <TT
CLASS="filename"
>/usr/lib/pear</TT
> to the end of
     the existing <TT
CLASS="literal"
>include_path</TT
>.
    </P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
CELLPADDING="5"
><TR
><TD
><code><font color="#000000">
<font color="#0000BB">&lt;?php<br />$path </font><font color="#007700">= </font><font color="#DD0000">'/usr/lib/pear'</font><font color="#007700">;<br /></font><font color="#0000BB">set_include_path</font><font color="#007700">(</font><font color="#0000BB">get_include_path</font><font color="#007700">() . </font><font color="#0000BB">PATH_SEPARATOR </font><font color="#007700">. </font><font color="#0000BB">$path</font><font color="#007700">);<br /></font><font color="#0000BB">?&gt;</font>
</font>
</code></TD
></TR
></TABLE
></DIV
></TD
></TR
></TABLE
>
  </P
></DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN182421"
></A
><H2
>参见</H2
><P
>&#13;   <P
></P
><TABLE
BORDER="0"
><TBODY
><TR
><TD
><A
HREF="function.ini-set.html"
><B
CLASS="function"
>ini_set()</B
></A
></TD
></TR
><TR
><TD
><A
HREF="function.get-include-path.html"
><B
CLASS="function"
>get_include_path()</B
></A
></TD
></TR
><TR
><TD
><A
HREF="function.restore-include-path.html"
><B
CLASS="function"
>restore_include_path()</B
></A
></TD
></TR
><TR
><TD
><A
HREF="function.include.html"
><B
CLASS="function"
>include()</B
></A
></TD
></TR
></TBODY
></TABLE
><P
></P
>
  </P
></DIV
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
SUMMARY="Footer navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="function.restore-include-path.html"
ACCESSKEY="P"
>上一页</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="index.html"
ACCESSKEY="H"
>起始页</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="function.set-magic-quotes-runtime.html"
ACCESSKEY="N"
>下一页</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>restore_include_path</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="ref.info.html"
ACCESSKEY="U"
>上一级</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>set_magic_quotes_runtime</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>