SplObjectStorage::offsetSet
(PHP 5 >= 5.3.0, PHP 7, PHP 8)
SplObjectStorage::offsetSet — Associates data to an object in the storage
说明
Associate data to an object in the storage.
注意:
SplObjectStorage::offsetSet() is an alias of SplObjectStorage::attach().
返回值
没有返回值。
示例
示例 #1 SplObjectStorage::offsetSet() example
<?php
$s = new SplObjectStorage;
$o1 = new stdClass;
$s->offsetSet($o1, "hello"); // Similar to $s[$o1] = "hello";
var_dump($s[$o1]);
?>
以上示例的输出类似于:
string(5) "hello"
参见
- SplObjectStorage::attach() - Adds an object in the storage
- SplObjectStorage::offsetGet() - Returns the data associated with an object
- SplObjectStorage::offsetExists() - Checks whether an object exists in the storage
- SplObjectStorage::offsetUnset() - Removes an object from the storage
+添加备注
用户贡献的备注 1 note
aderh ¶
1 year ago
Although `offsetSet` is supposed to be an alias to `attach`, real-world results do not indicate that. When extending the SplObjectStorage class, it's expected that a modification to `attach` would also affect `offsetSet`. However, it seems they need to both be extended. Consider the results below...
<?php
declare(strict_types=1);
class CustomSplObjectStorage extends SplObjectStorage
{
public function offsetSet(mixed $object, mixed $info = null): void
{
print("offsetSet called\n");
parent::offsetSet($object, $info);
}
public function attach(mixed $object, mixed $info = null): void
{
print("attach called\n");
parent::attach($object, $info);
}
}
$a = new CustomSplObjectStorage();
$a[new stdClass()] = 'ok';
$a->attach(new stdClass(), 'ok');
?>
This prints:
```
offsetSet called
attach called
```
While we would expect...
```
offsetSet called
attach called
attach called
```
... if `offsetSet` was a true alias of `attach`. I'm not sure if this is intentional or not.
备份地址:http://www.lvesu.com/blog/php/splobjectstorage.offsetset.php