致命错误:在 (....PATH) 中找不到类名称?

发布于 2024-08-09 23:45:56 字数 248 浏览 6 评论 0原文

如果我收到以下错误,可能是什么问题。

当我扩展一个类时,我得到了这个错误

示例:

类 ModuleUser 扩展 抽象模块

致命错误:在 (....PATH) 中未找到 AbstractModule 类?

我已经做了大部分的可能性...但我无法解决问题。

任何帮助将不胜感激,

感谢提前费

What may be the problem if i get the following error.

while i am extending a class i got this error

example:

class ModuleUser extends
AbstractModule

Fatal error: Class AbstractModule not found in (....PATH) ?

I have done most of the possibilities... But i can't resolve the problem.

any help will be thankful

thanks n advance

Fero

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

感性 2024-08-16 23:45:56

在定义 ModuleUser 之前,导入包含 AbstractModule 定义的文件。

require_once 'path/to/abstract_module.php';

如果两个类位于同一个文件中,请确保在定义 AbstractModule 之后定义 ModuleUser 类。

Prior to your definition of ModuleUser, import the file that contains the definition for AbstractModule.

require_once 'path/to/abstract_module.php';

If both classes are in the same file, then make sure you define the class ModuleUser after you define AbstractModule.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文