In certain other languages (AS3 for example), it has been noted that initializing a new array is faster if done like this var foo = [] rather than var foo
var foo = []
var foo
There is no other way, so this is the best.
Edit: This answer is not valid since PHP 5.4 and higher.