3v4l.org

run code in 300+ PHP versions simultaneously
<?php $resolutions = array ( "Desktop monitor" => array ( //Standard 4:3 "800x600" => "800x600", "1024x768" => "1024x768", "1600x1200" => "1600x1200", //Wide 16:10 "960x600" => "960x600", "1280x800" => "1280x800", "1440x900" => "1440x900", "1680x1050" => "1680x1050", "1920x1200" => "1920x1200", ), "Apple" => array ( "DeviceX" => "2048x1536", "DeviceY" => "1024x768", ), ); array_walk( $resolutions, function (&$row) { asort($row, SORT_NATURAL); } ); var_export($resolutions);

preferences:
30.02 ms | 406 KiB | 5 Q