최신 웹 개발 튜토리얼
 

PHP natcasesort() Function


<PHP 배열 문헌

정의 및 사용

natcasesort() 함수를 사용하여 배열 정렬 "natural order" 알고리즘. 값은 원래 키를 유지한다.

첫 번째 숫자 때문에 자연 알고리즘에서, 번호 2, 10 (2)보다 작은, 컴퓨터 정렬에서 숫자 10 미만 "10" 미만이다.

이 함수는 대소 문자를 구분한다.

이 함수는 성공시 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 배열 문헌