我是 PHP OOP 的新手,我在获取数组时遇到问题。
class example
{
public $array;
public function __construct()
{
$this->array = array();
}
public function do_work()
{
$this->array[] = 'test';
}
}
$test = new example();
$test->do_work();
$test->array;
我不断得到一个空数组而不是“测试”。我究竟做错了什么?