PHP Conference Japan 2024

SplFixedArray::offsetUnset

(PHP 5 >= 5.3.0, PHP 7, PHP 8)

SplFixedArray::offsetUnset取消设置指定 $index 处的数值

描述

public SplFixedArray::offsetUnset(int $index): void

取消设置指定索引处的数值。

参数

index

要取消设置的索引。

返回值

没有返回值。

错误/异常

index超出数组定义的大小,或者index无法解析为整数时,抛出RuntimeException异常。

添加注释

用户贡献注释 1 条注释

3
c dot 1 at smithies dot org
14 年前
此函数将NULL赋值给数组元素。它的使用对count()没有影响。而将NULL赋值给元素对isset()没有影响,offsetUnset()和unset()则有影响。而取消设置元素会影响应用于数组或ArrayObject的foreach()的行为,但对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(); // 0: NULL and unset, 1: NULL and unset, 2: NULL and unset
$a->fill();
$a->dump(); // 0: 0, 1: 1, 2: 2
$a[1] = NULL;
unset(
$a[2]);
$a->dump(); // 0: 0, 1: NULL, 2: NULL and unset
?>
To Top