ArrayIterator::__construct()函数是PHP中的一个内置函数,用于构造ArrayIterator。
用法:
public ArrayIterator::__construct( mixed $array, int $flags = 0 )
参数:该函数接受上述和以下描述的两个参数:
- $array:此参数保存对象迭代器的数组。
- $flag:此参数保留单位,以控制ArrayIterator对象的行为。
返回值:此函数返回ArrayIterator对象。
以下示例程序旨在说明PHP中的ArrayIterator::__construct()函数:
示例1:
<?php
// Declare an ArrayIterator
$arrItr = new ArrayIterator(
array('G', 'e', 'e', 'k', 's', 'f', 'o', 'r'),
ArrayIterator::ARRAY_AS_PROPS
);
// Display the elements
while($arrItr->valid()) {
echo $arrItr->current();
$arrItr->next();
}
?>
输出:
Geeksfor
示例2:
<?php
// Declare an ArrayIterator
$arrItr = new ArrayIterator(
array("Geeks", "for", "Geeks"),
ArrayIterator::STD_PROP_LIST
);
// Display the elements
foreach ($arrItr as $key => $val) {
echo $key . " => " . $val . "\n";
}
?>
输出:
0 => Geeks 1 => for 2 => Geeks
参考: https://www.php.net/manual/en/arrayiterator.construct.php
相关用法
- PHP ArrayIterator key()用法及代码示例
- PHP ArrayIterator next()用法及代码示例
- PHP ArrayIterator natsort()用法及代码示例
- PHP ArrayIterator getFlags()用法及代码示例
- PHP ArrayIterator getArrayCopy()用法及代码示例
- PHP ArrayIterator current()用法及代码示例
- PHP ArrayIterator uksort()用法及代码示例
- PHP ArrayIterator offsetExists()用法及代码示例
- PHP ArrayIterator offsetUnset()用法及代码示例
- PHP ArrayIterator valid()用法及代码示例
- PHP ArrayIterator serialize()用法及代码示例
- PHP ArrayIterator uasort()用法及代码示例
- PHP ArrayIterator append()用法及代码示例
- PHP ArrayIterator count()用法及代码示例
- PHP ArrayIterator asort()用法及代码示例
注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 PHP | ArrayIterator __construct() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。