php命令行(cli)模式下require引入错误解决办法

写的定时任务遇到这种情况

Warning: require_once(../data/config.php): failed to open stream: No such file or directory in /www/wwwroot/xcx.taokeapp.net/shell/CollageFail.php on line 13
PHP Fatal error:  require_once(): Failed opening required '../data/config.php' (include_path='.:/www/server/php/56/lib/php') in /www/wwwroot/xcx.taokeapp.net/shell/CollageFail.php on line 13

Fatal error: require_once(): Failed opening required '../data/config.php' (include_path='.:/www/server/php/56/lib/php') in /www/wwwroot/xcx.taokeapp.net/shell/CollageFail.php on line 13

解决问题的办法有两个:

一、改用绝对路径,这个比较麻烦,所有包含的文件包括直接包含的文件里包含的文件路径,有一个不对就有可能出错,所以只有当执行文件比较简单的时候可用。

二、使用chdir函数,改变当前执行目录,把目录改为文件所在目录,chdir(dirname(__FILE__));

你可能感兴趣的:(php)