PHP返回值

发布于 2024-09-26 07:14:27 字数 133 浏览 4 评论 0原文

如果静态方法返回一个对象..我可以在一行中获取对象属性之一吗? 像这样但在一行中:

$obj = Parser::GetFirstItem();
$strTitle = $obj->Title;

If a static method returns an object .. can I in one line get one of the objects attributes?
Something like this but in a single line :

$obj = Parser::GetFirstItem();
$strTitle = $obj->Title;

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

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

发布评论

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

评论(3

流殇 2024-10-03 07:14:27

你真的尝试过吗?

$strTitle = Parser::GetFirstItem()->Title;

如果您使用的是 PHP5 并且不是仍然停留在 PHP4 上,那么这应该可行。

这是有关它的文章的链接

Have you actually tried it?

$strTitle = Parser::GetFirstItem()->Title;

That should work, provided you're using PHP5 and not still stuck on PHP4.

Here's a link to an article about it.

如果没有你 2024-10-03 07:14:27

当然。尝试一下:

$strTitle = Parser::GetFirstItem()->Title;

不完全确定这是何时引入的。 5? 5.1? 5.2?必须检查一下。

更新: 似乎从一开始就是 PHP 5 的一项功能。

Sure. Just try it out:

$strTitle = Parser::GetFirstItem()->Title;

Not entirely sure when this was introduced. 5? 5.1? 5.2? Will have to check.

Update: Seems to have been a PHP 5 feature from the start.

自在安然 2024-10-03 07:14:27

您的 GetFirstItem 方法应该返回一个对象。只有虚拟方法(非静态方法)可以做到这一点:

return $this;

Your GetFirstItem method should returns an object. Only virtual (not static methods) can do this:

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