array.push和arr[]添加元素的快慢

I've done a small comparison between array_push() and the $array[] method and the $array[] seems to be a lot faster. 



takes 0.0622200965881 seconds

and

takes 1.63195490837 seconds

so if your not making use of the return value of array_push() its better to use the $array[] way.

你可能感兴趣的:(php)