当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP ArrayIterator offsetExists()用法及代码示例


ArrayIterator::offsetExists()函数是PHP中的内置函数,用于检查给定索引处偏移量的存在。

用法:

bool ArrayIterator::offsetExists( mixed $index )

参数:该函数接受单个参数$index,该参数保存索引值以检查偏移量的存在。


返回值:如果存在偏移量,则此函数返回TRUE,否则返回FALSE。

以下示例程序旨在说明PHP中的ArrayIterator::offsetExists()函数:

程序1:

<?php 
  
// Declare an ArrayIterator 
$arrItr = new ArrayIterator( 
    array( 
        "a" => 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)

程序2:

<?php 
     
// Declare an ArrayIterator 
$arrItr = new ArrayIterator( 
    array( 
        "for", "Geeks", "Science", 
        "Geeks", "Portal", "Computer"
    ) 
); 
  
    
// Print the value at index 1  
echo $arrItr->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



相关用法


注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 PHP | ArrayIterator offsetExists() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。