标签: php optimization arrays
如果我理解正确,您可以使用以下方法为数组添加值:
$myArray[] = 123;
或
array_push($myArray, 123);
一个更清洁/更快吗?