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.
我正在为我的应用程序使用 Qcubed 框架,但出现此错误:
Fatal error: Call to undefined method Users::LoadAll() in C:\xampp\htdocs\andret\admin\users.php on line 183
这个问题的原因是什么?
如果没有更多信息或代码示例,我只能猜测,但您可以尝试这些东西,看看它们是否有帮助。检查 users.php 是否加载了 QCubed 框架,检查您是否已运行 codegen 并且 Users.class.php 是否存在于您的 includes/models 目录中。admin/users.php 是一个类文件吗?如果是这样,您是否将类命名为用户?如果是这种情况,您可能希望将该类重命名为 AdminUsers,以便它不会与您的模型中的 Users 类冲突,因为 QCubed 不使用 PHP 的名称间距。