关于require_once的问题
1、假如a页面带有require_once "include.php";
2、a页面运行要调用b和c的函数,并且c页面也要调用b页面的函数;
3、如果我在c页面 require_once "include.php"或require_once "b.php"。
4、运行a页面就会报错:
Warning:failed to open stream;
Fatal error: require_once(): Failed opening required '../lib/mysql.func.php' (include_path='.;C:\php\pear;E:\wamp\www\360yun\HTML\html\PHP\shop/lib;E:\wamp\www\360yun\HTML\html\PHP\shop/core;E:\wamp\www\360yun\HTML\html\PHP\shop/configs') in E:\wamp\www\360yun\HTML\html\PHP\shop\core\cate.inc.php on line 3
前提:c和b页面都包含在了include.php。
因为我没有跟着老师的代码写,所以这个问题估计就我遇到了,我怀疑是不是include_path设置的问题导致?
而且我把include和需要调用的页面都改成require也是没用的
这是什么问题????