當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP ArrayIterator natsort()用法及代碼示例


ArrayIterator::natsort()函數是PHP中的一個內置函數,用於對數組自然排序。

用法:

void ArrayIterator::natsort( void )

參數:該函數不接受任何參數。


返回值:該函數不返回任何值。

以下示例程序旨在說明PHP中的ArrayIterator::natsort()函數:

示例1:

<?php 
    
// Declare an ArrayIterator 
$arrItr = new ArrayIterator( 
    array( 
        5 => 'G', 
        4 => 'e', 
        3 => 'E', 
        2 => 'k', 
        1 => 'S',  
    ) 
); 
    
// Sort the array key 
$arrItr->natsort(); 
   
// Display the element 
while($arrItr->valid()) { 
    echo $arrItr->current() . " "; 
    $arrItr->next(); 
} 
    
?>
輸出:
E G S e k

示例2:

<?php 
   
// Declare an ArrayIterator 
$arrItr = new ArrayIterator( 
    array("geeks", "GEEKS", "Geeks", "gEEKS") 
); 
  
// Sort the array with case sensitive 
$arrItr->natsort(); 
  
var_dump($arrItr); 
  
?>
輸出:
object(ArrayIterator)#1 (1) {
  ["storage":"ArrayIterator":private]=>
  array(4) {
    [1]=>
    string(5) "GEEKS"
    [2]=>
    string(5) "Geeks"
    [3]=>
    string(5) "gEEKS"
    [0]=>
    string(5) "geeks"
  }
}

參考: https://www.php.net/manual/en/arrayiterator.natsort.php



相關用法


注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 PHP | ArrayIterator natsort() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。