SplObjectStorage::valid
(PHP 5 >= 5.1.0, PHP 7, PHP 8)
SplObjectStorage::valid — Returns if the current iterator entry is valid
参数
此函数没有参数。
示例
示例 #1 SplObjectStorage::valid() example
<?php
$s = new SplObjectStorage();
$o1 = new stdClass;
$o2 = new stdClass;
$s->attach($o1, "d1");
$s->attach($o2, "d2");
$s->rewind();
while($s->valid()) {
echo $s->key()."\n";
$s->next();
}
?>
以上示例的输出类似于:
0 1
参见
- SplObjectStorage::current() - Returns the current storage entry
- SplObjectStorage::getInfo() - Returns the data associated with the current iterator entry
+添加备注
用户贡献的备注
此页面尚无用户贡献的备注。
备份地址:http://www.lvesu.com/blog/php/splobjectstorage.valid.php