require_once问题
我在 __constructor 中有这段代码
$this->Reliability = new Reliability("name","url");
问题:我遇到了一个意外的奇怪错误:
Fatal error: Class 'Reliability' not found in "/path/"
我正在使用“__autoload”方法来调用所需的类,但当我在 ModalBOX 窗口。如果我请求 ModalBox 之外的文件,一切都会顺利:(
有一些技巧来修复它吗?
提前非常感谢!
PS
这是 __autoload 方法:
function __autoload($className) {
if (file_exists($className . '.php')) {
require_once $className . '.php';
return true;
}
否则返回 false; }
I have this code in the __constructor
$this->Reliability = new Reliability("name","url");
Problem: I got an unexpected strange error:
Fatal error: Class 'Reliability' not found in "/path/"
I'm using the "__autoload" method to call the required classes, but it doesn't work when I'm calling the file in a ModalBOX Window. If I request the file outside the ModalBox evrything goes fine :(
Some tricks to fix it?
thank you very much in advance!
P.S.
this is the __autoload method:
function __autoload($className) {
if (file_exists($className . '.php')) {
require_once $className . '.php';
return true;
}
else return false;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的自动加载器是否已在模态框中显示的文件中注册?
Is your autoloader registered in the file displayed in the modalbox?