3v4l.org

run code in 300+ PHP versions simultaneously
<?php $arr = array(5 => 1, 12 => 2); $arr[] = 56; // This is the same as $arr[13] = 56; // at this point of the script $arr["x"] = 42; // This adds a new element to // the array with key "x" var_dump($arr);

preferences:
50.43 ms | 402 KiB | 5 Q