当前位置: 首页>>代码示例>>PHP>>正文


PHP SplFixedArray::offsetUnset方法代码示例

本文整理汇总了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);
 }
开发者ID:nmarley,项目名称:bitcoin-php,代码行数:10,代码来源:MutableCollection.php

示例2: offsetUnset

 /**
  * Unset collection item.
  *
  * @param int $index
  */
 public function offsetUnset($index)
 {
     $this->changed = true;
     parent::offsetUnset($index);
 }
开发者ID:jimlind,项目名称:PHP-CS-Fixer,代码行数:10,代码来源:Tokens.php

示例3: offsetUnset

 public function offsetUnset($n)
 {
     echo "A::offsetUnset\n";
     return parent::offsetUnset($n);
 }
开发者ID:gleamingthecube,项目名称:php,代码行数:5,代码来源:ext_spl_tests_fixedarray_002.php

示例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);
开发者ID:ray0916,项目名称:learn,代码行数:31,代码来源:splFixedArray.php

示例5: SplFixedArray

<?php

$array = new SplFixedArray(5);
$a = $array->offsetUnset();
if (is_null($a)) {
    echo 'PASS';
}
开发者ID:badlamer,项目名称:hhvm,代码行数:7,代码来源:SplFixedArray_offsetUnset_invalid_parameter.php

示例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);
开发者ID:badlamer,项目名称:hhvm,代码行数:11,代码来源:SplFixedArray_offsetUnset_string.php


注:本文中的SplFixedArray::offsetUnset方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。