SplObjectStorage::setInfo()函数是PHP中的内置函数,用于设置与当前迭代器条目关联的数据。
用法:
void SplObjectStorage::setInfo( $val )
参数:该函数接受单个参数$val,该参数指定要与存储的当前迭代器条目关联的数据。
返回值:该函数不返回任何值。
以下示例程序旨在说明PHP中的SplObjectStorage::setInfo()函数:
程序1:
<?php
$str = new SplObjectStorage();
$obj1 = new StdClass;
$str->attach($obj1, "GeeksforGeeks");
$str->rewind();
// Set new info for $obj1 in storage $str
$str->setInfo("new_GeeksforGeeks");
// Print Result
var_dump($str[$obj1]);
?>
输出:
string(17) "new_GeeksforGeeks"
程序2:
<?php
$obj1 = new StdClass;
$obj2 = new StdClass;
$obj3 = new StdClass;
$gfg = new SplObjectStorage();
$gfg[$obj1] = "GFG";
$gfg[$obj2] = "GeeksClasses";
$gfg[$obj3] = "SUDO";
// Using rewind function
$gfg->rewind();
while($gfg->valid()) {
$gfg->setInfo("Modified_GFG_DATA");
var_dump($gfg->getInfo());
// Moving to next element
$gfg->next();
}
?>
输出:
string(17) "Modified_GFG_DATA" string(17) "Modified_GFG_DATA" string(17) "Modified_GFG_DATA"
参考: https://www.php.net/manual/en/splobjectstorage.setinfo.php
相关用法
- PHP SplObjectStorage next()用法及代码示例
- PHP SplObjectStorage contains()用法及代码示例
- PHP SplObjectStorage key()用法及代码示例
- PHP SplObjectStorage serialize()用法及代码示例
- PHP SplObjectStorage detach()用法及代码示例
- PHP SplObjectStorage unserialize()用法及代码示例
- PHP SplObjectStorage current()用法及代码示例
- PHP SplObjectStorage offsetGet()用法及代码示例
- PHP SplObjectStorage getinfo()用法及代码示例
- PHP SplObjectStorage offsetExists()用法及代码示例
- PHP SplObjectStorage offsetSet()用法及代码示例
- PHP SplObjectStorage offsetUnset()用法及代码示例
- PHP SplObjectStorage rewind()用法及代码示例
- PHP SplObjectStorage removeAllExcept()用法及代码示例
- PHP SplObjectStorage removeAll()用法及代码示例
注:本文由纯净天空筛选整理自R_Raj大神的英文原创作品 PHP | SplObjectStorage setInfo() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。