快一个;我怀疑这是可能的,但是有没有办法利用array($key => $value);
PHP 的语法来处理SplObjectStorage
对象?
我的意思是,有没有这样的方法可以实现:
$store = // ?
new KeyObject() => new ValueObject(),
new KeyObject() => new ValueObject(),
// ...
在初始化对象存储的上下文中?截至目前,我只是在使用:(并且可能会继续,考虑到这种可能性的绝对可能性)
$store = new SplObjectStorage();
$store[new KeyObject()] = new ValueObject();
$store[new KeyObject()] = new ValueObject();
// ...
会很好,高度怀疑它,但也许有人知道得更好。