SplObjectStorage::getInfo

(PHP 5 >= 5.3.0, PHP 7, PHP 8)

SplObjectStorage::getInfo返回与当前迭代器条目关联的数据

描述

public SplObjectStorage::getInfo(): mixed

返回与当前迭代器位置指向的对象关联的数据或信息。

参数

此函数没有参数。

返回值

与当前迭代器位置关联的数据。

示例

示例 #1 SplObjectStorage::getInfo() 示例

<?php
$s
= new SplObjectStorage();

$o1 = new stdClass;
$o2 = new stdClass;

$s->attach($o1, "d1");
$s->attach($o2, "d2");

$s->rewind();
while(
$s->valid()) {
$index = $s->key();
$object = $s->current(); // 与 current($s) 相似
$data = $s->getInfo();

var_dump($object);
var_dump($data);
$s->next();
}
?>

上面的示例将输出类似于以下内容

object(stdClass)#2 (0) {
}
string(2) "d1"
object(stdClass)#3 (0) {
}
string(2) "d2"

参见

添加备注

用户贡献的备注 1 个备注

0
叶王
13 年前
此方法 SplObjectStorage::getInfo() 在 PHP 5.2.13 上不存在。

但是,PHP 5.3.2 及更高版本确实有它。要自己找出,请使用以下代码段。

$> php -r "print_r(get_class_methods(new SplObjectStorage()));"

PHP 5.2.13 的结果
====
数组
(
[0] => attach
[1] => detach
[2] => contains
[3] => count
[4] => rewind
[5] => valid
[6] => key
[7] => current
[8] => next
[9] => unserialize
[10] => serialize
)

PHP 5.3.2 的结果
=====
数组
(
[0] => attach
[1] => detach
[2] => contains
[3] => addAll
[4] => removeAll
[5] => getInfo
[6] => setInfo
[7] => count
[8] => rewind
[9] => valid
[10] => key
[11] => current
[12] => next
[13] => unserialize
[14] => serialize
[15] => offsetExists
[16] => offsetSet
[17] => offsetUnset
[18] => offsetGet
)
To Top