如何在php.ini文件中更改include_path?

时间:2015-02-23 08:14:15

标签: php

我试过很多方面,但我没有做出改变。

我想像这样更改include_path:

include_path = "c:\path\to\my\folder\file"

但在尝试使用get_include_path()打印包含路径时 它的印刷如下:

'.;C:\php\pear'

任何人都可以帮助我吗? 我也尝试了set_include_path,但它对我不起作用。

1 个答案:

答案 0 :(得分:2)

如果您想在php.ini文件中更改包含路径,只需搜索include_path,您应该找到类似的内容:

; Windows: "\path1;\path2"
include_path=".;C:\xampp\php\PEAR"

现在你可以在这里更改它并重启服务器它应该可以工作!

旁注:

我建议您在更改php.ini文件中的内容之前制作保存副本

有关include_path字符串的详细信息,请参阅手册:http://php.net/manual/en/ini.core.php#ini.include-path