Home
last modified time | relevance | path

Searched refs:offsetExists (Results 1 – 25 of 96) sorted by relevance

1234

/php-src/ext/spl/tests/
H A Dbug66834.phpt6 // overrides both offsetExists and offsetGet
9 public function offsetExists($offset): bool {
11 return parent::offsetExists($offset);
20 // overrides only offsetExists
23 public function offsetExists($offset): bool {
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 …]
H A Dbug74478.phpt9 echo "offsetExists($name)\n";
40 offsetExists(0)
42 offsetExists(0)
44 offsetExists(0)
46 offsetExists(0)
51 offsetExists(0)
53 offsetExists(1)
55 offsetExists(2)
57 offsetExists(0)
59 offsetExists(1)
[all …]
H A Dbug62059.phpt11 public function offsetExists($name): bool {
12 echo "offsetExists($name)\n";
13 return parent::offsetExists($name);
24 echo "offsetExists($name)\n";
25 return parent::offsetExists($name);
52 offsetExists(0)
54 offsetExists(1)
57 offsetExists(1)
65 offsetExists(0)
67 offsetExists(1)
[all …]
H A Dbug28822.phpt2 Bug #28822 (ArrayObject::offsetExists() works inverted)
8 var_dump($array->offsetExists('key'));
9 var_dump($array->offsetExists('nokey'));
H A DSplDoublyLinkedList_offsetExists_success.phpt2 SPL SplDoublyLinkedList offsetExists returns correct values
14 if($list->offsetExists(0) === true) {
19 if($list->offsetExists(1) === true) {
24 if($list->offsetExists(2) === false) {
H A Dfixedarray_002.phpt25 public function offsetExists($n): bool {
26 echo "A::offsetExists\n";
27 return parent::offsetExists($n);
83 A::offsetExists
84 A::offsetExists
85 A::offsetExists
86 A::offsetExists
H A Dbug40872.phpt2 Bug #40872 (inconsistency in offsetSet, offsetExists treatment of string enclosed integers)
23 var_dump($projects->offsetExists(1));
24 var_dump($projects->offsetExists('2'));
H A Dbug40442.phpt2 Bug #40442 (ArrayObject::offsetExists broke in 5.2.1, works in 5.2.0)
7 var_dump($a->offsetExists('property'));
H A DarrayObject_offsetExists_nullcheck.phpt2 SPL: ArrayObject::offsetExists() should return true for element containing NULL
6 var_dump($ao->offsetExists('foo'));
H A DSplFixedArray_offsetExists_less_than_zero.phpt2 SPL FixedArray offsetExists behaviour on a negative index
8 if($array->offsetExists(-10) === false) {
H A Dsplfixedarray_offsetExists_larger.phpt2 Checks that offsetExists() does not accept a value larger than the array.
12 var_dump($ar->offsetExists(4));
H A Diterator_044.phpt28 var_dump($this->offsetExists($v));
45 var_dump($it->offsetExists(0));
86 CachingIterator::offsetExists(): Argument #1 ($key) must be of type string, stdClass given
98 Deprecated: CachingIterator::offsetExists(): Passing null to parameter #1 ($key) of type string is …
131 CachingIterator::offsetExists(): Argument #1 ($key) must be of type string, stdClass given
141 Deprecated: CachingIterator::offsetExists(): Passing null to parameter #1 ($key) of type string is …
/php-src/Zend/tests/
H A Dbug71731.phpt9 echo "offsetExists($name)\n";
42 offsetExists(0)
44 offsetExists(0)
46 offsetExists(0)
48 offsetExists(0)
53 offsetExists(0)
55 offsetExists(1)
57 offsetExists(2)
59 offsetExists(0)
61 offsetExists(1)
[all …]
H A Dassign_coalesce_003.phpt20 public function offsetExists($k): bool {
21 echo "offsetExists($k)\n";
51 offsetExists(foo)
54 offsetExists(bar)
57 offsetExists(null)
61 offsetExists(foo)
63 offsetExists(bar)
67 offsetExists(foo)
69 offsetExists(bar)
H A Dbug63217.phpt10 public function offsetExists($offset): bool {
11 echo "offsetExists given ";
93 offsetExists given string(1) "0"
94 offsetExists given string(3) "123"
101 offsetExists given string(1) "0"
102 offsetExists given string(3) "123"
H A Dassign_coalesce_002.phpt29 public function offsetExists($k): bool {
55 public function offsetExists($k): bool {
/php-src/tests/classes/
H A Darray_access_001.phpt97 ObjectOne::offsetExists(0)
100 ObjectOne::offsetExists(1)
103 ObjectOne::offsetExists(2)
106 ObjectOne::offsetExists(4th)
109 ObjectOne::offsetExists(5th)
111 ObjectOne::offsetExists(6)
114 ObjectOne::offsetExists(0)
116 ObjectOne::offsetExists(1)
118 ObjectOne::offsetExists(2)
120 ObjectOne::offsetExists(4th)
[all …]
H A Darray_access_002.phpt97 ObjectOne::offsetExists(0)
100 ObjectOne::offsetExists(1)
103 ObjectOne::offsetExists(2)
106 ObjectOne::offsetExists(4th)
109 ObjectOne::offsetExists(5th)
111 ObjectOne::offsetExists(6)
114 ObjectOne::offsetExists(0)
116 ObjectOne::offsetExists(1)
118 ObjectOne::offsetExists(2)
120 ObjectOne::offsetExists(4th)
[all …]
H A Darray_access_013.phpt8 …public function offsetExists($offset): bool { throw new Exception(__METHOD__); return false; }
53 Caught in Test::offsetExists()
/php-src/ext/spl/tests/SplObjectStorage/
H A Dbug67582.phpt2 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));
H A DSplObjectStorage_coalesce.phpt22 echo "check isset/empty/contains for null. offsetExists returns true as long as the entry is there.…
59 check isset/empty/contains for null. offsetExists returns true as long as the entry is there.
68 TypeError: SplObjectStorage::offsetExists(): Argument #1 ($object) must be of type object, string g…
/php-src/Zend/tests/offsets/
H A DArrayAccess_container_offset_behaviour.phpt28 string(15) "CLASS_NAME::offsetExists"
32 string(15) "CLASS_NAME::offsetExists"
38 string(15) "CLASS_NAME::offsetExists"
76 string(15) "CLASS_NAME::offsetExists"
82 string(15) "CLASS_NAME::offsetExists"
88 string(15) "CLASS_NAME::offsetExists"
/php-src/Zend/
H A Dzend_weakrefs.stub.php31 public function offsetExists($object): bool {} function in WeakMap
H A Dzend_weakrefs_arginfo.h42 ZEND_METHOD(WeakMap, offsetExists);
57 ZEND_ME(WeakMap, offsetExists, arginfo_class_WeakMap_offsetExists, ZEND_ACC_PUBLIC)
/php-src/ext/spl/
H A Dspl_array.stub.php15 public function offsetExists(mixed $key): bool {} function in ArrayObject
100 public function offsetExists(mixed $key): bool {} function in ArrayIterator

Completed in 56 milliseconds

1234