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


PHP SplObjectStorage key()用法及代碼示例


SplObjectStorage::key()函數是PHP中的一個內置函數,用於獲取當前指向的迭代器的索引。

用法:

int SplObjectStorage::key()

參數:該函數不接受任何參數。


返回值:此函數返回迭代器當前指向的索引。

以下程序說明了PHP中的SplObjectStorage::key()函數:

示例1:

<?php 
  
// Create an empty SplObjectStorage 
$str = new SplObjectStorage(); 
  
$obj = new StdClass; 
  
$str->attach($obj, "d1"); 
  
$str->rewind(); 
  
// Get current index  
$index  = $str->key(); 
  
// Print Result 
var_dump($index); 
?>
輸出:
int(0)

示例2:

<?php 
  
// Create an Empty SplObjectStorage 
$str = new SplObjectStorage(); 
   
$obj1 = new StdClass; 
$obj2 = new StdClass; 
$obj3 = new StdClass; 
$obj4 = new StdClass; 
   
$str->attach($obj1, "GeksforGeeks"); 
$str->attach($obj2, "GFG"); 
$str->attach($obj3); 
$str->attach($obj4, "DSA"); 
   
$str->rewind(); 
   
// Iterate and print data on each index 
while($str->valid()) { 
      
    // Get index  
    $index  = $str->key(); 
    $object = $str->current();  
    $data   = $str->getInfo(); 
   
    var_dump($index, $data); 
    $str->next(); 
} 
?>
輸出:
int(0)
string(12) "GeksforGeeks"
int(1)
string(3) "GFG"
int(2)
NULL
int(3)
string(3) "DSA"

參考: https://www.php.net/manual/en/splobjectstorage.key.php



相關用法


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