在动态类名的开头添加反斜杠

发布于 2024-12-07 06:26:57 字数 278 浏览 1 评论 0原文

代码:

$className = '\MyNamespace\MyClass';
$object = new $className();

抛出错误“找不到类”

但是此代码:

$object = new \MyNamespace\MyClass();

不是。

第一个代码片段适用于登台,但不适用于我的本地。我需要在本地服务器上启用某些功能吗?

非常感谢您的帮助

The code:

$className = '\MyNamespace\MyClass';
$object = new $className();

throws error 'Class not found'

But this code:

$object = new \MyNamespace\MyClass();

is not.

First code fragment works at staging but not at my local. Do I need to enable something at my local server?

Many thanks for help

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

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

发布评论

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

评论(2

べ映画 2024-12-14 06:26:57

动态函数总是需要一个完全限定的命名空间名称,因此前导的\将是多余的。这就是为什么你不应该指定它:

$className = 'MyNamespace\MyClass';
$object = new $className();

但是,它仍然不应该抛出错误。演示:http://codepad.viper-7.com/D8H19r

Dynamic functions always require a fully-qualified namespace name and as such a leading \ would be redundant. That's why you shouldn't specify it:

$className = 'MyNamespace\MyClass';
$object = new $className();

But still, it shouldn't throw an error. Demo: http://codepad.viper-7.com/D8H19r

2024-12-14 06:26:57

只需查看字符串 $className 包含的内容即可。您会注意到,您应该始终跳过第一个斜杠。

您可以创建一些帮助程序来为您创建对象,并删除尾部斜杠(如果有)。
new 无论如何都是邪恶的;)

Just see what the string $className contains. You'll notice, that you should always skip the first slash.

You may create some helper to create the object for you, and strip the trailing slash if any.
new is evil anyway ;)

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