CachingIterator::__construct()函数是PHP中的内置函数,用于为迭代器构造新的CachingIterator对象。
用法:
public CachingIterator::__construct( Iterator $iterator, int $flags = self::CALL_TOSTRING )
参数:该函数接受上述和以下描述的两个参数:
- $iterator:此参数保存高速缓存的迭代器。
- $flags:此参数保存标志的位掩码。
返回值:该函数不返回任何值。
以下示例程序旨在说明PHP中的CachingIterator::__construct()函数:
示例1:
<?php
// Declare an array
$arr = array('G', 'e', 'e', 'k', 's');
// Create a new CachingIterator
$cachIt = new CachingIterator(
new ArrayIterator($arr),
CachingIterator::FULL_CACHE
);
// Display the result
foreach($cachIt as $element) {
echo $element . " ";
}
?>
输出:
G e e k s
示例2:
<?php
// Declare an ArrayIterator
$arr = array(
"a" => "Geeks",
"b" => "for",
"c" => "Geeks",
"d" => "Computer",
"e" => "Science",
"f" => "Portal"
);
// Create a new CachingIterator
$cachIt = new CachingIterator(
new ArrayIterator($arr),
CachingIterator::FULL_CACHE
);
// Display the result
foreach($cachIt as $key => $value) {
echo $key . " => " . $value . "\n";
}
?>
输出:
a => Geeks b => for c => Geeks d => Computer e => Science f => Portal
参考: https://www.php.net/manual/en/cachingiterator.construct.php
相关用法
- PHP CachingIterator next()用法及代码示例
- PHP CachingIterator key()用法及代码示例
- PHP CachingIterator getCache()用法及代码示例
- PHP CachingIterator getInnerIterator()用法及代码示例
- PHP CachingIterator getFlags()用法及代码示例
- PHP CachingIterator current()用法及代码示例
- PHP CachingIterator setFlags()用法及代码示例
- PHP CachingIterator rewind()用法及代码示例
- d3.js d3.set.has()用法及代码示例
- d3.js d3.map.get()用法及代码示例
- d3.js d3.set.add()用法及代码示例
注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 PHP | CachingIterator __construct() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。