时间:2021-07-01 10:21:17 帮助过:3人阅读
看个例子
新建2个php文件,一个目录位置结构如下
/index.php
/include/config.php
index.php Code:
<?php set_include_path("include"); include("config.php"); ?>
/include/config.php Code:
<?php set_include_path("include"); 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', '目录名');
相关推荐:
set_include_path用法
set_include_path和get_include_path用法详解
set_include_path在win和linux下的区别_PHP教程
以上就是php的set_include_path函数的详细内容,更多请关注Gxl网其它相关文章!