英[s?:t]   美[s?:rt]

n. ??, ??,

vt.&? ??? ??; ; ??... ????... ????

3?? ??: sorts ???: sorts ?? ??: sorted ?? ??: sorted

PHP ??() ?? ???

??: ??? ??? ?????? ?????.

??: ??sort(array,sortingtype);

????:

ParametersDescription
array?????. ??? ??? ?????.
?? ?? ?? ??. ??? ??/??? ???? ??? ?????. ??? ?: 0 = SORT_REGULAR - ???. ? ??? ???? ??? ?????(?? ASCII, ??? ???? ??). 1 = SORT_NUMERIC - ? ??? ??? ?????. 2 = SORT_STRING - ? ??? ???? ?????. 3 = SORT_LOCALE_STRING - ?? ???? ???? ? ??? ???? ?????(setlocale()?? ?? ??). 4 = SORT_NATURAL - natsort()? ?? ?? ??? ???? ? ??? ???? ?????. 5 = SORT_FLAG_CASE - ???? ????? ???? ?? SORT_STRING ?? SORT_NATURAL? ????(??? OR) ??? ? ????.

??: ? ??? ??? ??? ? ? ??? ?????. ?? ? ??? ?????. ???? TRUE? ???? ??? ??? FALSE? ?????.

PHP ??() ?? ?

<?php
$a=array("a"=>"php中文網(wǎng)","b"=>"西門","c"=>"php.cn");
sort($a);
print_r($a);
?>

???? ?? ?

??? ????? ??? "???? ??" ??? ?????

??:

Array ( [0] => php.cn [1] => php中文網(wǎng) [2] => 西門 )