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


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


ArrayIterator::asort()函數是PHP中的內置函數,用於對數組值進行排序。

用法:

void ArrayIterator::asort( void )

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


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

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

示例1:

<?php 
   
// Declare an ArrayIterator 
$arrItr = new ArrayIterator( 
    array('G', 'e', 'e', 'k', 's', 'f', 'o', 'r') 
); 
   
// Append the element into array iterator 
$arrItr->asort(); 
  
// Display the elements 
while($arrItr->valid()) { 
    echo $arrItr->current(); 
    $arrItr->next(); 
} 
   
?>
輸出:
Geefkors

示例2:

<?php 
   
// Declare an ArrayIterator 
$arrItr = new ArrayIterator( 
    array("Geeks", "for", "Geeks") 
); 
   
// Append the array element 
$arrItr->asort(); 
   
// Disaply the elements 
foreach ($arrItr as $key => $val) { 
    echo $key . " => " . $val . "\n"; 
} 
   
?>
輸出:
0 => Geeks
2 => Geeks
1 => for

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



相關用法


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