此函数将 NULL 分配给数组元素。它的使用对 count() 没有影响。而将 NULL 分配给元素不会影响 isset(),offsetUnset() 和 unset() 则会。而取消设置元素会影响 foreach() 应用于数组或 ArrayObject 的行为,它对 SplFixedArray 没有此影响,如下面的代码所示。
<?php
class atest extends SplFixedArray {
public function fill() {
for ($i = $this->count(); --$i >= 0; ) $this[$i] = $i;
}
public function dump() {
$sep = ' ';
foreach ($this as $k => $v) {
echo $sep, "$k: ", (is_null($v) ? 'NULL' : $v);
if (!isset($this[$k])) echo ' and unset';
$sep = ', ';
}
echo PHP_EOL;
}
}
$a = new atest(3);
$a->dump(); $a->fill();
$a->dump(); $a[1] = NULL;
unset($a[2]);
$a->dump(); ?>