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
相关用法
- PHP asort()用法及代码示例
- PHP ArrayObject asort()用法及代码示例
- PHP ArrayIterator key()用法及代码示例
- PHP ArrayIterator next()用法及代码示例
- PHP ArrayIterator offsetUnset()用法及代码示例
- PHP ArrayIterator setFlags()用法及代码示例
- PHP ArrayIterator offsetSet()用法及代码示例
- PHP ArrayIterator natsort()用法及代码示例
- PHP ArrayIterator ksort()用法及代码示例
- PHP ArrayIterator uksort()用法及代码示例
- PHP ArrayIterator unserialize()用法及代码示例
- PHP ArrayIterator seek()用法及代码示例
- PHP ArrayIterator offsetGet()用法及代码示例
- PHP ArrayIterator rewind()用法及代码示例
- PHP ArrayIterator seek()用法及代码示例
注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 PHP | ArrayIterator asort() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。