📜  PHP | SplObjectStorage getinfo()函数

📅  最后修改于: 2022-05-13 01:56:51.753000             🧑  作者: Mango

PHP | SplObjectStorage getinfo()函数

SplObjectStorage::getinfo()函数是PHP中的一个内置函数,用于通过当前迭代器位置获取与对象关联的数据。

句法:

mixed SplObjectStorage::getinfo()

参数:此函数不接受任何参数。

返回值:此函数返回与当前迭代器位置关联的对象。

下面的程序说明了PHP中的SplObjectStorage::getinfo()函数:

方案一:

attach($obj1, "GeksforGeeks");
  
$str->rewind();
  
$object = $str->current(); 
      
// Get info into $data 
$data   = $str->getInfo();
      
// Print Result
var_dump($object);
var_dump($data);
  
?>
输出:
object(stdClass)#2 (0) {
}
string(12) "GeksforGeeks"

方案二:

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()) {
    $index  = $str->key();
    $object = $str->current(); 
    $data   = $str->getInfo();
  
    var_dump($object);
    var_dump($data);
    $str->next();
}
?>
输出:
object(stdClass)#2 (0) {
}
string(12) "GeksforGeeks"
object(stdClass)#3 (0) {
}
string(3) "GFG"
object(stdClass)#4 (0) {
}
NULL
object(stdClass)#5 (0) {
}
string(3) "DSA"

参考: https://www. PHP.net/manual/en/splobjectstorage.getinfo。 PHP