SplObjectStorage::valid
(PHP 5 >= 5.1.0, PHP 7, PHP 8)
SplObjectStorage::valid — イテレータの現在のエントリが有効かどうかを返す
パラメータ
この関数にはパラメータはありません。
例
例1 SplObjectStorage::valid() の例
<?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() - 現在のストレージの要素を返す
- SplObjectStorage::getInfo() - イテレータの現在のエントリに関連づけられたデータを返す
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google