Searched refs:offsetExists (Results 1 – 25 of 52) sorted by relevance
123
6 // overrides both offsetExists and offsetGet9 public function offsetExists($offset) {11 return parent::offsetExists($offset);20 // overrides only offsetExists23 public function offsetExists($offset) {25 return parent::offsetExists($offset);61 echo "==== class with offsetExists() ====\n";83 string(37) "Called: ArrayObjectBoth::offsetExists"84 string(37) "Called: ArrayObjectBoth::offsetExists"85 string(37) "Called: ArrayObjectBoth::offsetExists"[all …]
2 Bug #28822 (ArrayObject::offsetExists() works inverted)8 var_dump($array->offsetExists('key'));9 var_dump($array->offsetExists('nokey'));
2 SPL SplDoublyLinkedList offsetExists returns correct values14 if($list->offsetExists(0) === true) {19 if($list->offsetExists(1) === true) {24 if($list->offsetExists(2) === false) {
22 public function offsetExists($n) {23 echo "A::offsetExists\n";24 return parent::offsetExists($n);81 A::offsetExists82 A::offsetExists83 A::offsetExists84 A::offsetExists
2 SPL FixedArray offsetExists throws error only one parameter8 $a = $array->offsetExists();14 Warning: SplFixedArray::offsetExists() expects exactly 1 parameter, 0 given in %s on line %d
2 SPL SplDoublyLinkedList offsetExists displays warning and returns null on no parameters8 $a = $list->offsetExists();14 Warning: SplDoublyLinkedList::offsetExists() expects exactly 1 parameter, 0 given in %s on line %d
2 Bug #67582: Cloned SplObjectStorage with overwritten getHash fails offsetExists()16 foreach($list as $x) var_dump($list->offsetExists($x));19 foreach($list2 as $x) var_dump($list2->offsetExists($x));
2 Bug #40872 (inconsistency in offsetSet, offsetExists treatment of string enclosed integers)23 var_dump($projects->offsetExists(1));24 var_dump($projects->offsetExists('2'));
2 Bug #40442 (ArrayObject::offsetExists broke in 5.2.1, works in 5.2.0)7 var_dump($a->offsetExists('property'));
2 SPL: ArrayObject::offsetExists() should return true for element containing NULL6 var_dump($ao->offsetExists('foo'));
2 SPL FixedArray offsetExists behaviour on a negative index8 if($array->offsetExists(-10) === false) {
2 Checks that offsetExists() does not accept a value larger than the array.12 var_dump($ar->offsetExists(4));
27 var_dump($this->offsetExists($v));37 var_dump($it->offsetExists(0));55 var_dump($it->offsetExists());75 Warning: CachingIterator::offsetExists() expects exactly 1 parameter, 0 given in %siterator_044.php…90 Warning: CachingIterator::offsetExists() expects parameter 1 to be string, object given in %siterat…135 Warning: CachingIterator::offsetExists() expects parameter 1 to be string, object given in %siterat…
9 function offsetExists($index) {98 object::offsetExists(0)101 object::offsetExists(1)104 object::offsetExists(2)107 object::offsetExists(4th)110 object::offsetExists(5th)112 object::offsetExists(6)115 object::offsetExists(0)117 object::offsetExists(1)119 object::offsetExists(2)[all …]
8 … public function offsetExists($offset) { throw new Exception(__METHOD__); return false; }54 Caught in Test::offsetExists()
23 if (!$object->offsetExists($element))31 function offsetExists($index) {62 function offsetExists($index)
13 function offsetExists($index) {
8 function offsetExists($offset) {/*...*/}
9 public function offsetExists( $offset ) { return false; }
17 public function offsetExists($n) {
8 public function offsetExists($offset) { }
8 function offsetExists($offset)
502 function offsetExists($offset); function683 function offsetExists($index) {/**/} function in ArrayObject795 function offsetExists($index) {/**/} function in ArrayIterator
Completed in 31 milliseconds