natsort() 函數(shù)用“自然排序”算法對(duì)數(shù)組排序
natsort ( $array );
此函數(shù)實(shí)現(xiàn)了一種排序算法,該排序算法以與人類相同的方式對(duì)字母數(shù)字字符串進(jìn)行排序,同時(shí)保持鍵/值關(guān)聯(lián)。這被稱為“自然排序”。
序號(hào) | 參數(shù)及說明 |
---|---|
1 | array(必需) 它指定一個(gè)數(shù)組 |
此函數(shù)在成功時(shí)返回TRUE,在失敗時(shí)返回FALSE。
<?php $input1 = array('click.txt', 'img12.txt', 'img10.txt', 'img2.txt', 'img1.txt', 'IMG3.txt'); $input2 = $input1; natsort($input2); echo " \n 自然排序 \n"; print_r($input2); ?>測(cè)試看看?/?
輸出結(jié)果:
自然排序 Array ( [0] => click.txt [5] => IMG3.txt [4] => img1.txt [3] => img2.txt [2] => img10.txt [1] => img12.txt )