<PHPの配列参照
定義と使用法
natcasesort()関数を使用して、配列ソート"natural order"アルゴリズム。 値は、元のキーを維持します。
最初の数ので、天然のアルゴリズムでは、数2は、10が2未満である、コンピュータ選別において数10未満である"10" 2未満です。
この関数は、大文字と小文字を区別しません。
この関数は、成功した場合にTRUE、失敗した場合にFALSEを返します。
構文
natcasesort(array)
パラメーター | 説明 |
---|---|
array | 必須。 ソートする配列を指定します |
例
<?php
$temp_files = array("temp15.txt","Temp10.txt",
"temp1.txt","Temp22.txt","temp2.txt");
natsort($temp_files);
echo "Natural order: ";
print_r($temp_files);
echo "<br />";
natcasesort($temp_files);
echo "Natural order case insensitve: ";
print_r($temp_files);
?>
上記のコードの出力は次のようになります。
Natural order:
Array
(
[0] => Temp10.txt
[1] => Temp22.txt
[2] => temp1.txt
[4] => temp2.txt
[3] => temp15.txt
)
Natural order case insensitve:
Array
(
[2] => temp1.txt
[4] => temp2.txt
[0] => Temp10.txt
[3] => temp15.txt
[1] => Temp22.txt
)
<PHPの配列参照