PHP | ArrayIterator offsetExists()函数
ArrayIterator::offsetExists()函数是PHP中的一个内置函数,用于检查给定索引处是否存在偏移。
句法:
bool ArrayIterator::offsetExists( mixed $index )
参数:此函数接受单个参数$index ,它保存索引值以检查偏移量的存在。
返回值:如果偏移量存在,该函数返回TRUE,否则返回FALSE。
下面的程序说明了PHP中的 ArrayIterator::offsetExists()函数:
方案一:
4,
"b" => 2,
"g" => 8,
"d" => 6,
"e" => 1,
"f" => 9
)
);
// Display the offset value
var_dump($arrItr->offsetGet("a"));
// Check the existence of offset
var_dump($arrItr->offsetExists("a"));
// Unset the offset value
var_dump($arrItr->offsetUnset("a"));
// Check the existence of offset
var_dump($arrItr->offsetExists("a"));
?>
输出:
int(4)
bool(true)
NULL
bool(false)
方案二:
offsetGet(1) . "\n";
// Check the existence of offset
var_dump($arrItr->offsetExists(1));
// Unset the offset value
var_dump($arrItr->offsetUnset(1));
// Check the existence of offset
var_dump($arrItr->offsetExists(1));
// Print the value at index 0
echo $arrItr->offsetGet(0) . "\n";
// Check the existence of offset
var_dump($arrItr->offsetExists(0));
// Unset the offset value
var_dump($arrItr->offsetUnset(0));
// Check the existence of offset
var_dump($arrItr->offsetExists(0));
?>
输出:
Geeks
bool(true)
NULL
bool(false)
for
bool(true)
NULL
bool(false)
参考: https://www. PHP.net/manual/en/arrayiterator.offsetexists。 PHP