<?php $array = [ "60", "111", "5", "22", "12", "3" ]; usort($array, function ($a, $b){ return strcmp($a, $b); }); var_export($array);
You have javascript disabled. You will not be able to edit any code.