gpt4 book ai didi

PHP set_include_path 配置

转载 作者:IT王子 更新时间:2023-10-29 01:02:14 25 4
gpt4 key购买 nike

我遇到了 set_include_path 的问题,我阅读了很多关于该问题的消息,但没有一条对我有用。我在 Debian 上,我的根目录将设置为/home/project/

所以我尝试了这 4 种不同的东西:

ini_set("include_path", '/home/project');
ini_set("include_path", '.:/home/project');
set_include_path('.:/home/project');
set_include_path('/home/project');
set_include_path(get_include_path().PATH_SEPARATOR.'/home/project');

但是没有任何效果...当我执行 echo get_include_path(); 时每次看起来都不错。

但是第 4 种方法在我的计算机上与 WAMP 完美配合。

关于所有这些的错误信息:

Warning: include(/config/config.php) [function.include]: failed to open stream: No such file or directory in /home/project/web/www.project.com/index.php on line 3

Warning: include() [function.include]: Failed opening '/config/config.php' for inclusion (include_path='.:/usr/share/php:/usr/share/pear:/home/project') in /home/project/web/www.project.com/index.php on line 3

最佳答案

按照文档中的说明尝试使用 PATH_SEPARATOR 常量。

set_include_path(get_include_path() . PATH_SEPARATOR . $path);

也许它因您要部署应用程序的系统而异..

更新:包含路径似乎没问题,但问题有所不同..

你不应该包括:

require '/config/config.php'

但是

require 'config/config.php'

所以去掉前导斜线,它应该可以工作。

关于PHP set_include_path 配置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8474008/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com