當前位置: 首頁>>代碼示例>>PHP>>正文


PHP SplFixedArray::offsetExists方法代碼示例

本文整理匯總了PHP中SplFixedArray::offsetExists方法的典型用法代碼示例。如果您正苦於以下問題:PHP SplFixedArray::offsetExists方法的具體用法?PHP SplFixedArray::offsetExists怎麽用?PHP SplFixedArray::offsetExists使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在SplFixedArray的用法示例。


在下文中一共展示了SplFixedArray::offsetExists方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: getItem

 /**
  * {@inheritdoc}
  */
 public function getItem($index)
 {
     if (!$this->items->offsetExists($index)) {
         throw new \OutOfBoundsException('The index ' . $index . ' is not set');
     }
     return $this->items[$index];
 }
開發者ID:battlerattle,項目名稱:shuffle-bag,代碼行數:10,代碼來源:ArrayStorage.php

示例2: offsetGet

 /**
  * @param int $offset
  * @return mixed
  */
 public function offsetGet($offset)
 {
     if (!$this->set->offsetExists($offset)) {
         throw new \OutOfRangeException('Nothing found at this offset');
     }
     return $this->set->offsetGet($offset);
 }
開發者ID:sbwdlihao,項目名稱:bitcoin-php,代碼行數:11,代碼來源:StaticCollection.php

示例3: offsetExists

 /**
  * If $index is below zero, we know that it does not exist.
  *
  * This was added to be compatible with HHVM 3.2.0.
  * Note that HHVM 3.3.0 no longer requires this work around.
  *
  * @param int $index
  *
  * @return bool
  */
 public function offsetExists($index)
 {
     return $index >= 0 && parent::offsetExists($index);
 }
開發者ID:bgotink,項目名稱:PHP-CS-Fixer,代碼行數:14,代碼來源:Tokens.php

示例4: SplFixedArray

<?php

$array = new SplFixedArray(5);
$a = $array->offsetExists();
if (is_null($a)) {
    echo 'PASS';
}
開發者ID:badlamer,項目名稱:hhvm,代碼行數:7,代碼來源:SplFixedArray_offsetExists_invalid_parameter.php

示例5: SplFixedArray

<?php

$array = new SplFixedArray(5);
if ($array->offsetExists(-10) === false) {
    echo 'PASS';
}
開發者ID:badlamer,項目名稱:hhvm,代碼行數:6,代碼來源:SplFixedArray_offsetExists_less_than_zero.php

示例6: offsetExists

 public function offsetExists($n)
 {
     echo "A::offsetExists\n";
     return parent::offsetExists($n);
 }
開發者ID:gleamingthecube,項目名稱:php,代碼行數:5,代碼來源:ext_spl_tests_fixedarray_002.php

示例7:

$array->rewind();
// current()
// 獲得當前節點
$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數組轉化成陣列
開發者ID:ray0916,項目名稱:learn,代碼行數:31,代碼來源:splFixedArray.php

示例8: SplFixedArray

<?php

$ar = new SplFixedArray(3);
$ar[0] = 1;
$ar[1] = 2;
$ar[2] = 3;
var_dump($ar->offsetExists(4));
開發者ID:badlamer,項目名稱:hhvm,代碼行數:7,代碼來源:splfixedarray_offsetExists_larger.php


注:本文中的SplFixedArray::offsetExists方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。