报告用于向数组中添加一个元素的
array_push()
调用。 在此类情况下,建议改用
$array[] =
,这样不会增加调用函数的开销。
有关详细信息,请参阅
array_push (php.net)
。