我可以在 PHP 中重命名名称空间吗?
在 C++ 中可以做到这一点:
namespace qux = std::foo::bar::baz;
qux::CFoo BAR;
Can one do such a thing in PHP?
In C++ one can do this:
namespace qux = std::foo::bar::baz;
qux::CFoo BAR;
Can one do such a thing in PHP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以这样做:
请参阅文档了解更多详细信息。
You can do this :
See the documentation for further details.
命名空间可以有别名(docs)。
总体思路是
use ... as ...;
如下所示。这是一个在家尝试的例子:
Namespaces may be aliased (docs).
The general idea is
use … as …;
as shown below.And here's a try-this-at-home example: