|
我在根目录下建立了一个目录: calculateur, 此目录下有另外两个目录: a和b,还有一个文件: index.php
我想在我的controller里的test目录下的home.php里调用上边的index.php,
我用的语句为:
require_once ("calculateur/index.php");
同时index.php文件调用:
require_once ("a/a.php");
a.php里边调用
require_once ("b/b.php");就在调用这个文件的时候出现错误:
A PHP Error was encounteredSeverity: Warning
Message: require_once(b/b.php) [function.require-once]: failed to open stream: No such file or directory
请问,是否我上边的语句有错误,还是ci中不支持这样的写法?
多谢...
|
|