在动态类名的开头添加反斜杠
代码:
$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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
动态函数总是需要一个完全限定的命名空间名称,因此前导的
\
将是多余的。这就是为什么你不应该指定它:但是,它仍然不应该抛出错误。演示: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:But still, it shouldn't throw an error. Demo: http://codepad.viper-7.com/D8H19r
只需查看字符串
$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 ;)