3v4l.org

run code in 300+ PHP versions simultaneously
<?php $array = [ "2" => "abc", "ab" => "abc12", "lkT" => 2, 45 => "test", "This" => "is this", false => "abc012", " " => 22.22, ]; print_r($array); sort($array, SORT_NATURAL); print_r($array);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [2] => abc [ab] => abc12 [lkT] => 2 [45] => test [This] => is this [0] => abc012 [ ] => 22.22 ) Array ( [0] => 2 [1] => 22.22 [2] => abc [3] => abc012 [4] => abc12 [5] => is this [6] => test )

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
73.51 ms | 402 KiB | 8 Q