Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
由于什么版本的 php 可以直接访问从函数返回的对象的属性?
<?php class Foo { public $foo; public function __construct($foo) { $this->foo = $foo; } } function bar() { return new Foo(1); } echo bar()->foo;
面向对象编程 (OOP) 最早是在 php4 中引入的。php 版本 4 中的 oop 区域不是很大。php4 中只有很少的功能可用。PHP中面向对象编程的主要概念是从版本5(我们通常称为php5)引入的。