最佳答案
在 PHP 中添加数组成员更好的方法是什么,
$array[] = $value;
或者
array_push($array, $value);
?
虽然说明书上说最好避免函数调用,但我也读到 $array[]
比 array_push()
慢得多。什么是一些澄清或基准?