PHP 数组排序 sort rsort arsort krsort

PHP 数组排序 sort rsort arsort krsort

<?php

$str = array("a", "b", "c");
// sort() 对数组进行升序排列
sort($str);
// implode(元素分隔符, 数组) 将数组转string
echo implode(' ', $str);
echo ' ';
// rsort() 对数组进行降序排列
rsort($str);
echo implode(' ', $str);
echo ' ';

// arsort() 根据数组的值,对数组进行降序排列
$age = array("a"=>"22", "b"=>"32", "c"=>"42");
arsort($age);
echo implode(' ', $age);
echo ' ';

// krsort() 根据数组的键,对数组进行降序排列
$age = array("a"=>"22", "b"=>"32", "c"=>"42");
krsort($age);
echo implode(' ', $age);

?>

 

发表回复

您的电子邮箱地址不会被公开。