©
Dieses Dokument verwendet PHP-Handbuch für chinesische Websites Freigeben
(PHP 5 >= 5.0.0)
Iterator::valid — 检查当前位置是否有效
此方法在 Iterator::rewind() 和 Iterator::next() 方法之后被调用以此用来检查当前位置是否有效。
此函数没有参数。
返回将被转换为 布尔型 。成功时返回 TRUE
, 或者在失败时返回 FALSE
。
[#1] Voitcus at gmail dot com [2013-03-23 21:08:49]
If your class implements also ArrayAccess interface, you could use as valid() body
function valid(){
return $this->offsetExists($this->position);
}
[#2] seva dot lapsha at gmail dot com [2009-08-01 18:19:48]
If Iterator::valid() returns false, the foreach() loop will be terminated.