Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将要更改所有包含以使用获取当前工作目录来指定查找位置。
getcwd()
因为 PHP 并没有像我想象的那样在当前目录中查找。
有没有办法改变这种行为,所以我的代码不会到处乱扔getcwd()?
一种告诉 inlcude 函数在它本身所在的目录中查找的方法。
出于常识,我认为它会这样做,但事实并非如此。
include_path在 PHP.ini 中设置你的。
include_path
或者,使用set_include_path().
set_include_path()
http://php.net/manual/en/function.set-include-path.php