本文整理匯總了PHP中SplFixedArray::offsetUnset方法的典型用法代碼示例。如果您正苦於以下問題:PHP SplFixedArray::offsetUnset方法的具體用法?PHP SplFixedArray::offsetUnset怎麽用?PHP SplFixedArray::offsetUnset使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類SplFixedArray
的用法示例。
在下文中一共展示了SplFixedArray::offsetUnset方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: offsetUnset
/**
* @param int $offset
*/
public function offsetUnset($offset)
{
if (!$this->offsetExists($offset)) {
throw new \InvalidArgumentException('Offset does not exist');
}
$this->set->offsetUnset($offset);
}
示例2: offsetUnset
/**
* Unset collection item.
*
* @param int $index
*/
public function offsetUnset($index)
{
$this->changed = true;
parent::offsetUnset($index);
}
示例3: offsetUnset
public function offsetUnset($n)
{
echo "A::offsetUnset\n";
return parent::offsetUnset($n);
}
示例4:
// 獲得當前節點
$array->current();
// next()
// 指針移動到下一個節點
$array->next();
// setSize(int $size)
// 重新設置陣列數組的大小
$array->setSize(10);
// getSize()
// 獲得陣列數組的大小
$array->getSize();
// offsetExists(int $index)
// 判斷該索引是否存在值,返回boolean
$array->offsetExists(3);
// offsetGet(int $index)
// 獲得該索引對應的值
$array->offsetGet(3);
// offsetSet(int $index, mixed $value)
// 設置該索引對應的值
$array->offsetSet(6, 'value3');
// offsetUnset(int $index)
// 刪除該索引對應的值
$array->offsetUnset(6);
// toArray()
// 將陣列轉化成php數組
// output: Array ( [0] => [1] => 2 [2] => [3] => value2 [4] => [5] => [6] => [7] => [8] => [9] => )
$php_array = $array->toArray();
// fromArray($php_array)
// 將php數組轉化成陣列
// output: SplFixedArray Object ( [0] => [1] => 2 [2] => [3] => value2 [4] => [5] => [6] => [7] => [8] => [9] => )
$spl_array = SplFixedArray::fromArray($php_array);
示例5: SplFixedArray
<?php
$array = new SplFixedArray(5);
$a = $array->offsetUnset();
if (is_null($a)) {
echo 'PASS';
}
示例6: SplFixedArray
<?php
// Create a fixed array
$fixedArray = new SplFixedArray(5);
// Fill it up
for ($i = 0; $i < 5; $i++) {
$fixedArray[$i] = "PHPNW Testfest";
}
// remove an item
$fixedArray->offsetUnset("4");
var_dump($fixedArray);