SplFixedArray::offsetUnset()函数是PHP中的内置函数,用于取消设置所请求索引的值。
用法:
void SplFixedArray::offsetUnset( $index )
参数:该函数接受单个参数$index,该参数指定需要取消设置其值的所需索引。
返回值:该函数不返回任何值。
以下示例程序旨在说明PHP中的SplFixedArray::offsetUnset()函数:
程序1:
<?php
// Create a fixed size array
$gfg = new SplFixedArray(6);
$gfg[0] = 1;
$gfg[1] = 5;
$gfg[2] = 10;
// Print current offset
var_dump($gfg->offsetGet(2));
// Unset offset
$gfg->offsetUnset (2);
// Print after unset
var_dump($gfg->offsetGet(2));
?>
输出:
int(10) NULL
程序2:
<?php
// Create some fixed size array
$gfg = new SplFixedArray(6);
$gfg[0] = 1;
$gfg[1] = 5;
$gfg[2] = 1;
$gfg[3] = 11;
$gfg[4] = 15;
$gfg[5] = 17;
$i = 0;
while($i < 6) {
// Print current offset
var_dump($gfg->offsetGet($i));
// Unset offset
$gfg->offsetUnset ($i);
// Print after unset
var_dump($gfg->offsetGet($i));
$i++;
}
?>
输出:
int(1) NULL int(5) NULL int(1) NULL int(11) NULL int(15) NULL int(17) NULL
参考: https://www.php.net/manual/en/splfixedarray.offsetunset.php
相关用法
- PHP SplObjectStorage offsetUnset()用法及代码示例
- PHP SplDoublyLinkedList offsetUnset()用法及代码示例
- PHP ArrayObject offsetUnset()用法及代码示例
- PHP ArrayIterator offsetUnset()用法及代码示例
- PHP SplFixedArray key()用法及代码示例
- PHP SplFixedArray next()用法及代码示例
- PHP SplFixedArray count()用法及代码示例
- PHP SplFixedArray offsetExists()用法及代码示例
- PHP SplFixedArray valid()用法及代码示例
- PHP SplFixedArray current()用法及代码示例
- PHP SplFixedArray toArray()用法及代码示例
- PHP SplFixedArray __construct()用法及代码示例
- PHP SplFixedArray getSize()用法及代码示例
- PHP SplFixedArray setSize()用法及代码示例
- PHP SplFixedArray rewind()用法及代码示例
注:本文由纯净天空筛选整理自R_Raj大神的英文原创作品 PHP | SplFixedArray offsetUnset () Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。