📜  PHP | SplObjectStorage current()函数

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

PHP | SplObjectStorage current()函数

SplObjectStorage::current()函数是PHP中的一个内置函数,用于获取当前存储条目。

句法:

object SplObjectStorage::current()

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

返回值:该函数返回当前存储的对象。

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

方案一:

attach($obj, "GeeksforGeeks");
  
$storage->rewind();
  
// Use current() function to get
// the current object
$object = $storage->current(); 
$data = $storage->getInfo();
  
var_dump($object);
var_dump($data);
?>
输出:
object(stdClass)#2 (0) {
}
string(13) "GeeksforGeeks"

方案二:

attach($obj1, "GeeksforGeeks");
$str->attach($obj2, "GFG");
$str->attach($obj3, "Geeks");
$str->attach($obj4, "PHP");
  
$str->rewind();
  
while($str->valid()) {
    $index = $str->key();
      
    // Use current() function to get
    // the current object
    $object = current($str); 
    $data = $str->getInfo();
  
    var_dump($object);
    var_dump($data);
    $str->next();
}
?>
输出:
bool(false)
string(13) "GeeksforGeeks"
bool(false)
string(3) "GFG"
bool(false)
string(5) "Geeks"
bool(false)
string(3) "PHP"

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