當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP SplFixedArray offsetExists()用法及代碼示例


SplFixedArray::offsetExists()函數是PHP中的內置函數,用於檢查提供的索引在數組中是否存在。

用法:

bool SplFixedArray::offsetExists( $index )

參數:該函數接受單個參數$index,該參數指定請求的索引。


返回值:如果找到請求的索引,則此函數返回true,否則返回false。

以下示例程序旨在說明PHP中的SplFixedArray::offsetExists()函數:

程序1:

<?php 
  
// Create a fixed size array 
$gfg = new SplFixedArray(6); 
  
$gfg[0] = 1; 
$gfg[1] = 5; 
$gfg[2] = 10; 
  
// Check whether index exist or not 
var_dump($gfg->offsetExists(2)); 
?>
輸出:
bool(true)

程序2:

<?php 
  
// Create some fixed size array 
$gfg = new SplFixedArray(6); 
  
$gfg[0] = 1; 
$gfg[1] = 5; 
$gfg[2] = 1; 
$gfg[3] = 11; 
$gfg[4] = 15; 
$gfg[5] = 17; 
  
$i = 0; 
  
// Iterate array and print values 
while($i < 8) { 
  
    // Check whether index exist or not 
    var_dump($gfg->offsetExists($i));  
  
    $i++; 
} 
?>
輸出:
bool(true)
bool(true)
bool(true)
bool(true)
bool(true)
bool(true)
bool(false)
bool(false)

參考: https://www.php.net/manual/en/splfixedarray.offsetexists.php



相關用法


注:本文由純淨天空篩選整理自R_Raj大神的英文原創作品 PHP | SplFixedArray offsetExists() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。