如何在 PHP 5.3 中的命名空间类内部使用全局命名空间类型提示?

发布于 2024-10-31 18:34:34 字数 318 浏览 0 评论 0原文

namespace MyClass\Util;

class Sample {

  public function each(Object $f) {

  }
}

从调用文件(未命名空间)

$sample = new Sample();
$sample->each(new stdClass());

产生:

可捕获的致命错误:传递给 MyClass\Util\Sample.php 的参数 1 必须是 MyClass\Util\Object 的实例,给定的对象实例

namespace MyClass\Util;

class Sample {

  public function each(Object $f) {

  }
}

From Calling File (not namespaced)

$sample = new Sample();
$sample->each(new stdClass());

Produces:

Catchable fatal error: Argument 1 passed to MyClass\Util\Sample.php must be an instance of MyClass\Util\Object, instance of Object given

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

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

发布评论

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

评论(1

心作怪 2024-11-07 18:34:34

您可以使用 \ 指向全局命名空间:

namespace MyClass\Util;

class Sample {

  public function each(\Object $f) {

  }
}

作为参考,您可以阅读全局空间(引用)

在名称前添加 \ 将指定
该名称是必需的
即使在全球空间的背景下
命名空间。

You can use \ to point to the global namespace :

namespace MyClass\Util;

class Sample {

  public function each(\Object $f) {

  }
}

As a reference, you can read Global space (quoting) :

Prefixing a name with \ will specify
that the name is required from the
global space even in the context of
the namespace.

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