SplObjectStorage::valid()函數是PHP中的內置函數,用於檢查當前存儲條目是否有效。
用法:
bool SplObjectStorage::valid()
參數:該函數不接受任何參數。
返回值:如果迭代器條目有效,則此函數返回true,否則返回false。
以下程序說明了PHP中的SplObjectStorage::valid()函數:
示例1:
<?php
// Create an empty SplObjectStorage
$str = new SplObjectStorage();
$obj = new StdClass;
$obj2 = new StdClass;
$obj3 = new StdClass;
// Use attach() function to
// add object
$str->attach($obj, "GFG");
// Use rewind() function to rewind the
// iterator to the first storage element
$str->rewind();
// Use valid() function to check current
// iterator is valid entry or not
print($str->valid());
?>
輸出:
1
示例2:
<?php
// Create an empty SplObjectStorage
$gfg = new SplObjectStorage();
$obj1 = new StdClass;
$obj2 = new StdClass;
$obj3 = new StdClass;
$gfg[$obj1] = "GFG";
$gfg[$obj2] = "GeeksClasses";
$gfg[$obj3] = "SUDO";
// Use rewind function
$gfg->rewind();
while($gfg->valid()) {
var_dump($gfg->getInfo());
// Moving to next element
$gfg->next();
}
?>
輸出:
string(3) "GFG" string(12) "GeeksClasses" string(4) "SUDO"
參考: https://www.php.net/manual/en/splobjectstorage.valid.php
相關用法
- PHP SplObjectStorage contains()用法及代碼示例
- PHP SplObjectStorage next()用法及代碼示例
- PHP SplObjectStorage key()用法及代碼示例
- PHP SplObjectStorage attach()用法及代碼示例
- PHP SplObjectStorage offsetGet()用法及代碼示例
- PHP SplObjectStorage serialize()用法及代碼示例
- PHP SplObjectStorage rewind()用法及代碼示例
- PHP SplObjectStorage current()用法及代碼示例
- PHP SplObjectStorage removeAllExcept()用法及代碼示例
- PHP SplObjectStorage offsetExists()用法及代碼示例
- PHP SplObjectStorage offsetSet()用法及代碼示例
- PHP SplObjectStorage detach()用法及代碼示例
- PHP SplObjectStorage removeAll()用法及代碼示例
- PHP SplObjectStorage offsetUnset()用法及代碼示例
- PHP SplObjectStorage getinfo()用法及代碼示例
注:本文由純淨天空篩選整理自R_Raj大神的英文原創作品 PHP | SplObjectStorage valid() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。