Home
last modified time | relevance | path

Searched refs:current (Results 76 – 100 of 661) sorted by relevance

12345678910>>...27

/PHP-7.2/ext/phar/tests/zip/
H A Dphar_buildfromiterator9.phpt21 function current() {
22 echo "current\n";
23 return current($this->a);
31 return current($this->a);
57 current
H A Dphar_buildfromiterator5.phpt21 function current() {
22 echo "current\n";
23 return current($this->a);
31 return current($this->a);
56 current
H A Dphar_buildfromiterator6.phpt21 function current() {
22 echo "current\n";
23 return current($this->a);
31 return current($this->a);
56 current
H A Dphar_buildfromiterator4.phpt21 function current() {
22 echo "current\n";
23 return current($this->a);
31 return current($this->a);
57 current
H A Dphar_buildfromiterator7.phpt21 function current() {
22 echo "current\n";
23 return current($this->a);
31 return current($this->a);
56 current
/PHP-7.2/ext/phar/tests/
H A Dphar_buildfromiterator5.phpt21 function current() {
22 echo "current\n";
23 return current($this->a);
31 return current($this->a);
56 current
H A Dphar_buildfromiterator6.phpt21 function current() {
22 echo "current\n";
23 return current($this->a);
31 return current($this->a);
56 current
H A Dphar_buildfromiterator9.phpt21 function current() {
22 echo "current\n";
23 return current($this->a);
31 return current($this->a);
57 current
H A Dphar_buildfromiterator7.phpt21 function current() {
22 echo "current\n";
23 return current($this->a);
31 return current($this->a);
56 current
H A Dphar_oo_004.phpt55 function current()
58 return parent::current();
104 MyDirectoryIterator::current
110 MyDirectoryIterator::current
116 MyDirectoryIterator::current
122 MyDirectoryIterator::current
/PHP-7.2/ext/phar/tests/tar/
H A Dphar_buildfromiterator9.phpt21 function current() {
22 echo "current\n";
23 return current($this->a);
31 return current($this->a);
57 current
H A Dphar_buildfromiterator4.phpt21 function current() {
22 echo "current\n";
23 return current($this->a);
31 return current($this->a);
57 current
H A Dphar_buildfromiterator7.phpt21 function current() {
22 echo "current\n";
23 return current($this->a);
31 return current($this->a);
56 current
/PHP-7.2/tests/classes/
H A Diterators_006.phpt27 function current() {
28 return $this->current;
33 $this->current = current($this->array);
55 #var_dump($array->current());
/PHP-7.2/ext/spl/tests/
H A DSplFileObject_current_variation001.phpt2 SPL: SplFileObject::current variation
16 echo $s->current();
17 echo $s->current();
H A Dbug72051.phpt10 $callbackTest = new CallbackFilterIterator(new ArrayIterator($data), function (&$current) {
11 $current['message'] = 'Test message';
16 $data = $callbackTest->current();
H A Dfileobject_001.phpt9 var_dump($o->current());
12 var_dump($o->current());
16 var_dump($o->current());
20 var_dump($o->current());
24 var_dump($o->current());
H A Diterator_021.phpt58 function current()
61 return parent::current();
115 RecursiveArrayIteratorIterator::current
124 RecursiveArrayIteratorIterator::current
133 RecursiveArrayIteratorIterator::current
139 RecursiveArrayIteratorIterator::current
150 RecursiveArrayIteratorIterator::current
165 RecursiveArrayIteratorIterator::current
173 RecursiveArrayIteratorIterator::current
H A DSplFileObject_current_error001.phpt2 SPL: SplFileObject::current variation error
16 echo $s->current('foo');
19 Warning: SplFileObject::current() expects exactly 0 parameters, 1 given in %s on line %d
H A Dbug45614.phpt15 echo str_replace("\0", '\0', $it->key()) . " => " . $it->current() .
18 echo str_replace("\0", '\0', $it->key()) . " => " . $it->current() .
32 echo "\n--> Invalidate current position and show the first two items:\n";
34 $ai->current();
51 --> Invalidate current position and show the first two items:
/PHP-7.2/ext/simplexml/tests/
H A Dsxe_004.phpt50 function current()
53 return parent::current();
92 SXETest::current
100 SXETest::current
108 SXETest::current
116 SXETest::current
129 SXETest::current
137 SXETest::current
/PHP-7.2/ext/date/tests/
H A Ddate_time_immutable-inherited.phpt8 $current = "2012-12-27 16:24:08";
11 $v = date_create_immutable($current);
16 $v = date_create_immutable($current);
/PHP-7.2/ext/spl/internal/
H A Drecursivetreeiterator.inc51 /** Prefix used right in front of the current element. */
68 /** @return string to place in front of current element
82 /** @return string presentation build for current element
86 return @(string)parent::current();
89 /** @return string to place after the current element
96 /** @return the current element prefixed and postfixed
98 function current()
102 return parent::current();
110 /** @return the current key prefixed and postfixed
H A Drecursivearrayiterator.inc32 /** @return whether the current element has children
36 return is_array($this->current());
39 /** @return an iterator for the current elements children
45 if ($this->current() instanceof self)
47 return $this->current();
53 return $this->ref->newInstance($this->current());
/PHP-7.2/ext/standard/tests/array/
H A Dcurrent_variation2.phpt2 Test current() function : usage variations - arrays containing different data types
5 /* Prototype : mixed current(array $array_arg)
12 * Pass arrays of different data types as $array_arg to current() to test behaviour
15 echo "*** Testing current() : usage variations ***\n";
108 // loop through each element of $inputs to check the behavior of current()
112 var_dump( current($input) );
120 *** Testing current() : usage variations ***

Completed in 30 milliseconds

12345678910>>...27