CachingIterator::offsetExists

(PHP 5 >= 5.2.0, PHP 7, PHP 8)

CachingIterator::offsetExistsoffsetExists 的用途

描述

public CachingIterator::offsetExists(string $key): bool
警告

此函数目前未记录;仅提供其参数列表。

参数

key

正在检查的索引。

返回值

如果偏移量引用的条目存在,则返回 true,否则返回 false

添加备注

用户贡献的备注 1 备注

ddrake at dreamingmind dot com
4 年前
offsetExists($index) 检查缓存,而不是内部或外部迭代器。

<?php
$cache
= new \CachingIterator(
new
\ArrayIterator(['a', 'b', 'c', 'd']),
\CachingIterator::FULL_CACHE);

$shortRange = range(0, 1);
$fullRange = range(0, 3);

foreach (
$shortRange as $index) {
$cache->next();
}

echo
PHP_EOL . 'The cache' . PHP_EOL;
var_export($cache->getCache());
echo
PHP_EOL;

foreach (
$fullRange as $offset) {
print_r("cache offset '$offset' " .
(
$cache->offsetExists("$offset") == 1
? 'exists'
: "doesn't exist"
) . PHP_EOL);
}
?>

The cache
array (
0 => 'a',
1 => 'b',
)
cache offset '0' exists
cache offset '1' exists
cache offset '2' doesn't exist
cache offset '3' doesn't exist
To Top