bool arsort ( array &$arr [, int $sort_mode = SORT_REGULAR ] )
引數說明:函數 | 說明 |
---|---|
sort() | 對陣列元素進行升序排序(從小到大)。 |
rsort() | 對陣列元素進行降序排序(從大到小)。 |
asort() | 對陣列元素進行升序排序(從小到大),並保持索引關係。 |
arsort() | 對陣列元素進行降序排序(從大到小),並保持索引關係。 |
shuffle() | 對陣列元素進行隨機排序,也就是隨機打亂陣列。 |
<?php $info = array( "url" => "http://c.biancheng.net/php/", "language" => "PHP", "update" => "2019-10-29", "author" => "changsheng yan" ); $info_copy = $info; asort($info, SORT_STRING); print_r($info); arsort($info_copy, SORT_STRING); print_r($info_copy); ?>執行結果:
Array
(
[update] => 2019-10-29
[language] => PHP
[author] => changsheng yan
[url] => http://c.biancheng.net/php/
)
Array
(
[url] => http://c.biancheng.net/php/
[author] => changsheng yan
[language] => PHP
[update] => 2019-10-29
)