Home
last modified time | relevance | path

Searched refs:current (Results 151 – 175 of 571) sorted by relevance

12345678910>>...23

/PHP-8.2/ext/standard/tests/array/
H A Dprev_basic.phpt13 echo key($array) . " => " . current($array) . "\n";
16 echo key($array) . " => " . current($array) . "\n";
19 echo key($array) . " => " . current($array) . "\n";
/PHP-8.2/Zend/tests/
H A Dbug32674.phpt20 public function current(): mixed {
21 $element = current($this->_elements);
39 return ($this->current() !== false);
H A Diap_on_object_deprecated.phpt8 var_dump(current($obj));
19 Deprecated: current(): Calling current() on an object is deprecated in %s on line %d
H A Dbug46381.phpt8 return ArrayIterator::current();
17 Fatal error: Uncaught Error: Non-static method ArrayIterator::current() cannot be called statically…
/PHP-8.2/Zend/tests/return_types/
H A D006.phpt8 function current() : Comment {
9 return parent::current();
/PHP-8.2/ext/spl/tests/SplFileObject/
H A DSplFileObject_next_variation001.phpt16 echo $s->current();
19 echo $s->current();
H A Dbug75917.phpt16 var_dump($tmp->current());
20 var_dump($tmp->current());
/PHP-8.2/ext/intl/breakiterator/
H A Dbreakiterator_iterators.cpp69 ZVAL_LONG(&zoi_iter->current, (zend_long)pos); in _breakiterator_move_forward()
79 ZVAL_LONG(&zoi_iter->current, (zend_long)pos); in _breakiterator_rewind()
119 ZVAL_UNDEF(&zoi_iter->current); in _breakiterator_get_iterator()
162 cur = bio->biter->current(); in _breakiterator_parts_move_forward()
189 ZVAL_STR(&zoi_bit->zoi_cur.current, res); in _breakiterator_parts_move_forward()
197 if (!Z_ISUNDEF(zoi_bit->zoi_cur.current)) { in _breakiterator_parts_rewind()
235 ZVAL_UNDEF(&((zoi_with_current*)ii->iterator)->current); in IntlIterator_from_BreakIterator_parts()
/PHP-8.2/Zend/tests/generators/
H A Dmutli_yield_from_with_exception.phpt21 $g->current(); // init.
27 var_dump($g->current());
47 #1 %s(%d): Generator->current()
H A Dgenerator_throwing_exception.phpt14 var_dump($gen->current());
22 var_dump($gen->current());
H A Dgenerator_send.phpt12 var_dump($gen->current());
14 var_dump($gen->current());
H A Dgc_with_root_parent_mismatch.phpt18 var_dump($gen1->current());
19 var_dump($gen2->current());
H A Dgenerator_throwing_during_function_call.phpt18 var_dump($gen->current());
26 var_dump($gen->current());
H A Dnested_method_calls.phpt23 $g1->current();
26 $g2->current();
H A Dyield_from_valid_exception.phpt8 function current(): mixed {}
26 $x->current();
/PHP-8.2/ext/spl/tests/
H A Ddit_002.phpt19 echo get_class($obj->current()) . "\n";
33 $val = $obj->current();
40 echo get_class($obj->current()) . "\n";
H A Darray_009a.phpt10 return is_array($this->current());
15 return new MyRecursiveArrayIterator($this->current());
H A Dbug75155.phpt16 foreach ($iterator2 as $current) {
17 echo $current;
H A Diterator_009.phpt18 function current(): never
21 parent::current();
H A Dbug37457.phpt16 public function current(): mixed
19 return current($this->array);
75 Collection::current
/PHP-8.2/ext/date/tests/
H A Dbug43452.phpt2 Bug #43452 ("weekday" is not equivalent to "1 weekday" of the current weekday is "weekday")
6 // <day> is equivalent to 1 <day> and will *not* forward if the current day
27 // First, second, etc skip to the first/second weekday *after* the current day.
29 // if the current day-of-week is the one mentioned in the phrase.
39 // Now the same where the current day-of-week does not match the one in the
/PHP-8.2/tests/classes/
H A Diterators_007.phpt11 …public function current(): mixed { if ($this->x == 1) throw new Exception(__METHOD__); return cu…
37 Caught in Test::current()
/PHP-8.2/ext/standard/
H A Dscanf.c583 zval *current; in php_sscanf_internal() local
732 current = args + objIndex++; in php_sscanf_internal()
850 current = args + objIndex++; in php_sscanf_internal()
851 ZEND_TRY_ASSIGN_REF_STRINGL(current, string, end - string); in php_sscanf_internal()
890 current = args + objIndex++; in php_sscanf_internal()
1043 current = args + objIndex++; in php_sscanf_internal()
1044 ZEND_TRY_ASSIGN_REF_STRING(current, buf); in php_sscanf_internal()
1052 current = args + objIndex++; in php_sscanf_internal()
1053 ZEND_TRY_ASSIGN_REF_LONG(current, value); in php_sscanf_internal()
1156 current = args + objIndex++; in php_sscanf_internal()
[all …]
/PHP-8.2/Zend/
H A Dzend_interfaces.stub.php16 public function current(): mixed; function
76 public function current(): mixed {} function in InternalIterator
/PHP-8.2/tests/lang/
H A DforeachLoopObjects.004.phpt2 Foreach loop tests - Removing the current element from an iterated object.
14 echo "\nRemoving the current element from an iterated object.\n";
32 Removing the current element from an iterated object.

Completed in 29 milliseconds

12345678910>>...23