SplObjectStorage::offsetSet()函数是PHP中的一个内置函数,用于设置存储对象。
用法:
void SplObjectStorage::offsetSet($obj, $val)
参数:该函数接受上面提到并在下面描述的两个参数:
- $obj:它指定要附加的对象。
- $val:它指定要与对象关联的值。
返回值:该函数不返回任何值。
以下示例程序旨在说明PHP中的SplObjectStorage::offsetSet()函数:
示例1:
<?php
// Create an empty SplObjectStorage
$str = new SplObjectStorage;
$obj = new StdClass;
// Set offset $obj to $str
$str->offsetSet($obj, "GeeksforGeeks");
// Print Result
var_dump($str->offsetGet($obj));
?>
输出:
string(13) "GeeksforGeeks"
示例2:
<?php
// Create an Empty SplObjectStorage
$str = new SplObjectStorage();
$obj1 = new StdClass;
$obj2 = new StdClass;
$obj3 = new StdClass;
$obj4 = new StdClass;
// Attach objects
$str->offsetSet($obj1, "GeksforGeeks");
$str->offsetSet($obj2, "GFG");
$str->offsetSet($obj3);
$str->offsetSet($obj4, "Hello GFG");
// Print result
var_dump($str->offsetGet($obj1));
var_dump($str->offsetGet($obj2));
var_dump($str->offsetGet($obj4));
var_dump($str->offsetGet($obj3));
?>
输出:
string(12) "GeksforGeeks" string(3) "GFG" string(9) "Hello GFG" NULL
参考: https://www.php.net/manual/en/splobjectstorage.offsetset.php
相关用法
- PHP ArrayIterator offsetSet()用法及代码示例
- PHP ArrayObject offsetSet()用法及代码示例
- PHP SplDoublyLinkedList offsetSet()用法及代码示例
- PHP SplObjectStorage contains()用法及代码示例
- PHP SplObjectStorage key()用法及代码示例
- PHP SplObjectStorage next()用法及代码示例
- PHP SplObjectStorage rewind()用法及代码示例
- PHP SplObjectStorage removeAll()用法及代码示例
- PHP SplObjectStorage removeAllExcept()用法及代码示例
- PHP SplObjectStorage offsetGet()用法及代码示例
- PHP SplObjectStorage offsetExists()用法及代码示例
- PHP SplObjectStorage offsetUnset()用法及代码示例
- PHP SplObjectStorage serialize()用法及代码示例
- PHP SplObjectStorage setInfo()用法及代码示例
- PHP SplObjectStorage unserialize()用法及代码示例
注:本文由纯净天空筛选整理自R_Raj大神的英文原创作品 PHP | SplObjectStorage offsetSet() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。