Home > php教程 > php手册 > body text

php中set

WBOY
Release: 2016-06-06 19:50:53
Original
1221 people have browsed it

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入 php中set_include_path函数用法: php中的set_include_path函数可用于设置应用程序目录,开发项目时合理应用这些函数,不但可以让我们在include时不用一层一层的计算目录,还可以提高我们开发的效率,减少

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入

    php中set_include_path函数用法:

    php中的set_include_path函数可用于设置应用程序目录,开发项目时合理应用这些函数,不但可以让我们在include时不用一层一层的计算目录,还可以提高我们开发的效率,减少文件包含错误率.

    例如:

    简历2个php文件,一个目录

    位置结构如下

    /index.php

    /include/config.php

    index.php:

   

    set_include_path(“include”);

    include(“config.php”);

    ?>

    /include/config.php

    以下为引用的内容:

    我是include下的config.php

    现在我们运行index.php

    怎么样,看到结果没

    我们include时只用写config.php就可以把/inlcude/config.php 文件包含进来

    设定多个include目录时用 “ ;” 号分开

    如: set_include_path(“include;include2;include3;lib;c:\php\lib”);

    可以用相对路径也可以用觉对路径.

    或许这段小小的代码你可能感觉不出set_include_path的好处,不过不要紧,你只要记住这么个代码可以实现这样的功能即可,在你以后技术提上去,开始开发大型项目时不要忘了有这么个函数,他可以减少你的工作量.

    姐妹函数get_include_path() 可以获取当时的include目录,

    实现set_include_path同样功能的还有我们强大又可爱的ini_set()

    用法:

    ini_set('include_path', ‘目录名');

php中set

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template