Home
last modified time | relevance | path

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

123

/PHP-7.4/ext/spl/tests/
H A Dbug66834.phpt6 // overrides both offsetExists and offsetGet
9 public function offsetExists($offset) {
11 return parent::offsetExists($offset);
20 // overrides only offsetExists
23 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 …]
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) {
12 echo "offsetExists($name)\n";
13 return parent::offsetExists($name);
23 public function offsetExists($name) {
24 echo "offsetExists($name)\n";
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) {
26 echo "A::offsetExists\n";
27 return parent::offsetExists($n);
84 A::offsetExists
85 A::offsetExists
86 A::offsetExists
87 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 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 DSplFixedArray_offsetExists_integer.phpt2 SplFixedArray::offsetExists with various types
6 <?php var_dump((new SplFixedArray(1))->offsetExists(0.1)); ?>
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.phpt27 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…
/PHP-7.4/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) {
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) {
11 echo "offsetExists given ";
91 offsetExists given string(1) "0"
92 offsetExists given string(3) "123"
99 offsetExists given string(1) "0"
100 offsetExists given string(3) "123"
H A Dassign_coalesce_002.phpt29 public function offsetExists($k) {
55 public function offsetExists($k) {
H A Dbug78356.phpt10 public function offsetExists($offset)
H A Dbug33710.phpt8 function offsetExists($offset) {/*...*/}
H A Dbug75420.16.phpt6 public function offsetExists($x) { }
H A Dbug30346.phpt9 public function offsetExists( $offset ) { return false; }
/PHP-7.4/tests/classes/
H A Darray_access_001.phpt9 function offsetExists($index) {
98 ObjectOne::offsetExists(0)
101 ObjectOne::offsetExists(1)
104 ObjectOne::offsetExists(2)
107 ObjectOne::offsetExists(4th)
110 ObjectOne::offsetExists(5th)
112 ObjectOne::offsetExists(6)
115 ObjectOne::offsetExists(0)
117 ObjectOne::offsetExists(1)
119 ObjectOne::offsetExists(2)
[all …]
H A Darray_access_002.phpt9 function offsetExists($index) {
98 ObjectOne::offsetExists(0)
101 ObjectOne::offsetExists(1)
104 ObjectOne::offsetExists(2)
107 ObjectOne::offsetExists(4th)
110 ObjectOne::offsetExists(5th)
112 ObjectOne::offsetExists(6)
115 ObjectOne::offsetExists(0)
117 ObjectOne::offsetExists(1)
119 ObjectOne::offsetExists(2)
[all …]
H A Darray_access_013.phpt8 … public function offsetExists($offset) { throw new Exception(__METHOD__); return false; }
54 Caught in Test::offsetExists()

Completed in 26 milliseconds

123