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
Prior to PHP 5.4:
$myArray = array();
PHP 5.4 and higher
$myArray = [];