Note that anywhere you see array() in that list for PHP 5.4 you can replace it with [ ]'s. So the example that has:<p><pre><code> $a = array(1,2,array(3,4));
</code></pre>
becomes:<p><pre><code> $a = [1,2,[3,4]];
</code></pre>
Also<p><pre><code> 0b101010
</code></pre>
works in 5.4.