3v4l.org

run code in 300+ PHP versions simultaneously
<?php /** * Assigning values to a multidimensional array, new key has to be put * in the first position of the array expression, for example, */ $foo = array(); $foo['foo'] = 'hello'; // Wrong key order // $foo['foo']['bar'] = 'world'; // Right key order $foo['bar']['foo'] = 'world'; print_r($foo); ?>

preferences:
45.68 ms | 402 KiB | 5 Q