php中的路径问题与set_include_path_PHP教程
程序员文章站
2022-06-05 22:55:01
...
这篇文章主要介绍了php中的路径问题与set_include_path,需要的朋友可以参考下
first:
php中常用的路径
当前文件路径:D:\phpweb\php_example\include_path.php
代码如下:
1.dirname(__FILE__); //输出D:\phpweb\php_example
2.$_SERVER['SCRIPT_FILENAME']; //输出D:/phpweb/php_example/include_path.php
second:
php中的set_include_path
在php中,include文件时,当包含路径不为相对也不为绝对时(如:include("example.php")),会先查找include_path所设置的目录,然后再在当前目录查找,这也是为什么很多资料上提到include("./example.php")比include("example.php")效率高的原因。
方法:
1.ini_set("include_path", "/usr/lib/pear"); //所有版本
2.set_include_path("/usr/lib/pear"); //version>=4.3.0
可以用下面的方法,在原有目录上添加目录
代码如下:
推荐阅读
-
php中的路径问题与set_include_path使用介绍
-
php中json_encode处理gbk与gb2312中文乱码问题的解决方法
-
解析php中获取url与物理路径的总结
-
php中的路径问题与set_include_path使用介绍
-
php5.3中ZendGuardLoader与wincache冲突问题的解决方法
-
php中__destruct与register_shutdown_function执行的先后顺序问题
-
PHP中echo与print语句的实例教程
-
PHP4与PHP3中一个不兼容问题的解决方法
-
解析PHP中的file_get_contents获取远程页面乱码的问题_PHP教程
-
php的扩展与嵌入--php扩展中的数组和哈希表1_PHP教程