Home
last modified time | relevance | path

Searched refs:current (Results 101 – 125 of 542) sorted by relevance

12345678910>>...22

/PHP-5.3/ext/spl/internal/
H A Dsplobjectstorage.inc42 /** @return current key
49 /** @return current object
51 function current()
53 $element = current($this->storage);
57 /** @return get current object's associated information
62 $element = current($this->storage);
66 /** @return set current object's associated information
H A Dsplfileobject.inc60 /** increase current line number
124 * Flush current data
133 * @return current file position
224 * @return current set of flags
240 * @return current setting for max line
264 * Invalidate current line buffer and set line number to 0.
281 * @note Fill current line buffer if not done yet.
284 function current()
306 /** Invalidate current line buffer.
357 * @return current line
[all …]
H A Drecursiveiterator.inc20 /** @return whether the current element has children
24 /** @return the sub iterator for the current element
H A Dlimititerator.inc89 /** @return current key
95 /** @return current element
97 function current() {
98 return $this->it->current();
108 /** @return current position relative to zero (not to offset specified in
/PHP-5.3/ext/spl/
H A Dspl.php557 function current(); function
646 /** @return current flags
767 * @return current flags
843 function current() {/**/} function in ArrayIterator
1011 function current() {/**/} function in DirectoryIterator
1064 function current() {/**/} function in RecursiveDirectoryIterator
1115 function current() {/**/} function in SimpleXMLIterator
H A Dspl_iterators.c1312 int current = 0; in spl_dual_it_call_method() local
1330 current = 0; in spl_dual_it_call_method()
1332 func_params[current] = (zval **) p - (arg_count-current); in spl_dual_it_call_method()
1333 current++; in spl_dual_it_call_method()
1571 if (intern->current.data) { in spl_dual_it_free()
1594 intern->current.pos = 0; in spl_dual_it_rewind()
1621current.key_type = intern->inner.iterator->funcs->get_current_key(intern->inner.iterator, &intern-… in spl_dual_it_fetch()
1624 intern->current.int_key = intern->current.pos; in spl_dual_it_fetch()
1639 intern->current.pos++; in spl_dual_it_next()
1698 RETURN_STRINGL(intern->current.str_key, intern->current.str_key_len-1, 1); in SPL_METHOD()
[all …]
/PHP-5.3/ext/standard/tests/array/
H A Dcompact_variation2.phpt2 Test compact() function: ensure compact() doesn't pick up variables declared outside of current sco…
10 echo "*** Testing compact() : usage variations - variables outside of current scope ***\n";
27 *** Testing compact() : usage variations - variables outside of current scope ***
H A Darray_merge_variation10.phpt25 echo key($result) . " => " . current($result) . "\n";
29 echo key($arr1) . " => " . current ($arr1) . "\n";
31 echo key($arr2) . " => " . current ($arr2) . "\n";
33 echo key($arr3) . " => " . current ($arr3) . "\n";
H A Dend_variation3.phpt19 var_dump(current($array1));
27 var_dump(current($array1));
29 var_dump(current($array2));
H A Dprev_basic.phpt18 echo key($array) . " => " . current($array) . "\n";
21 echo key($array) . " => " . current($array) . "\n";
24 echo key($array) . " => " . current($array) . "\n";
/PHP-5.3/ext/spl/tests/
H A Dbug47534.phpt7 echo gettype($it1->current())."\n";
11 echo gettype($it2->current())."\n";
H A Dbug67359.phpt14 $it->current();
20 $it->current();
H A Ddit_002.phpt19 echo get_class($obj->current()) . "\n";
33 $val = $obj->current();
40 echo get_class($obj->current()) . "\n";
H A Ddllist_memleak.phpt13 echo $dll->current()."\n";
16 echo $dll->current()."\n";
H A Darray_009a.phpt10 return is_array($this->current());
15 return new MyRecursiveArrayIterator($this->current());
H A Dbug37457.phpt16 public function current()
19 return current($this->array);
76 Collection::current
H A Diterator_009.phpt18 function current()
21 return parent::current();
H A Dspl_iterator_getcallchildren.phpt13 var_dump($test->current());
15 var_dump($test->current());
H A Dspl_iterator_to_array_error.phpt2 SPL: Error: iterator_to_array when the current operation throws an exception
7 public function current() {
H A Dspl_recursiveIteratorIterator_setMaxDepth_parameter_count.phpt13 //var_dump($test->current());
19 //var_dump($test->current());
/PHP-5.3/Zend/tests/
H A Dbug32674.phpt20 public function current() {
21 $element = current($this->_elements);
39 return ($this->current() !== false);
H A Dbug46381.phpt10 return ArrayIterator::current();
19 Fatal error: Non-static method ArrayIterator::current() cannot be called statically, assuming $this…
/PHP-5.3/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-5.3/tests/classes/
H A Diterators_007.phpt11 …public function current() { if ($this->x == 1) throw new Exception(__METHOD__); return current($…
38 Caught in Test::current()
/PHP-5.3/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";
33 Removing the current element from an iterated object.

Completed in 91 milliseconds

12345678910>>...22