我正在尝试存储对象集合,并且无法在 foreach 循环中调用对象方法。这基本上就是我所拥有的。print 函数不打印任何内容。有什么我在看的东西,或者这不是解决方法吗?
class person
{
private $name;
public function __construct($name) {
$this->name = $name;
}
public function get_name() {
return $this->name;
}
}
$test_set[] = new person("John");
$test_set[] = new person("Jane");
foreach($test_set as $set_item) {
print $set_item->get_name();
}