php sort() - 对数组进行升序排列

下面的实例将 $cars 数组中的元素按照字母升序排列:

实例

$cars=array("Volvo","BMW","Toyota");
sort($cars);
?>

你可能感兴趣的:(php,android,开发语言)