Home
last modified time | relevance | path

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

12345678910>>...22

/PHP-5.3/ext/standard/tests/array/
H A Deach_variation6.phpt20 echo key($arr) . " => " . current($arr) . "\n";
26 echo key($arr) . " => " . current($arr) . "\n";
H A Darray_slice_variation10.phpt22 echo key($result) . " => " . current($result) . "\n";
24 echo key($input) . " => " . current ($input) . "\n";
H A Darray_values_variation5.phpt22 echo key($result) . " => " . current($result) . "\n";
24 echo key($input) . " => " . current ($input) . "\n";
H A Dnatcasesort_variation10.phpt19 echo key($array_arg) . " => " . current ($array_arg) . "\n";
26 echo key($array_arg) . " => " . current ($array_arg) . "\n";
H A Darray_change_key_case_variation5.phpt22 echo key($result) . " => " . current($result) . "\n";
24 echo key($input) . " => " . current ($input) . "\n";
/PHP-5.3/ext/spl/internal/
H A Diteratoriterator.inc77 /** \return current key
84 /** \return current value
86 function current()
88 return $this->iterator->current();
H A Dmultipleiterator.inc48 /** @return current flags MIT_* */
152 * all registered Iterator instances current() result.
157 public function current()
175 $retval[$key] = $iter->current();
179 $retval[] = $iter->current();
184 throw new RuntimeException('Called current() with non valid sub iterator');
H A Drecursiveregexiterator.inc38 /** @return whether the current element has children
45 /** @return an iterator for the current elements children
/PHP-5.3/ext/pdo_mysql/tests/
H A Dpdo_mysql_connect_charset.phpt13 /* Connect to mysql to determine the current charset so we can diffinate it */
17 /* Make sure that we don't attempt to set the current character set to make this case useful */
/PHP-5.3/tests/lang/
H A Dinclude_variation1.phpt2 include() a file from the current script directory
H A DforeachLoop.001.phpt32 var_dump(current($a));
35 var_dump(current($a));
H A Dinclude_variation3.phpt2 Including a file in the current script directory from eval'd code
H A Dinclude_variation2.phpt2 Including a file in the current script directory from an included function
/PHP-5.3/ext/standard/tests/file/
H A Dis_file_basic.phpt12 /* Checking with current file */
15 /* Checking with (current) dir */
/PHP-5.3/ext/spl/
H A Dspl_fixedarray.c60 int current; member
220 intern->current = 0; in spl_fixedarray_object_new_ex()
857 iterator->object->current = 0; in spl_fixedarray_it_rewind()
889 ZVAL_LONG(zindex, iterator->object->current); in spl_fixedarray_it_get_current_data()
926 iterator->object->current++; in spl_fixedarray_it_move_forward()
941 RETURN_LONG(intern->current); in SPL_METHOD()
955 intern->current++; in SPL_METHOD()
969 RETURN_BOOL(intern->current >= 0 && intern->array && intern->current < intern->array->size); in SPL_METHOD()
983 intern->current = 0; in SPL_METHOD()
989 SPL_METHOD(SplFixedArray, current) in SPL_METHOD() argument
[all …]
/PHP-5.3/ext/spl/tests/
H A DSplDoublyLinkedList_current.phpt8 var_dump($list->current());
H A Ddllist_011.phpt8 var_dump($dll->current());
H A Darray_005.phpt40 echo "ACCEPT ".$this->current()->getId()." == ".$this->id."\n";
41 return $this->current()->getId() == $this->id;
H A Diterator_041a.phpt39 function current()
42 return parent::current();
/PHP-5.3/ext/intl/resourcebundle/
H A Dresourcebundle_iterator.h29 zval *current; member
/PHP-5.3/
H A DREADME.namespaces69 A special constant __NAMESPACE__ contains the name of the current namespace.
86 current import rules. So if we have "use A\B\C" and then "C\D\e()"
89 current import rules. So if we have "use A\B\C" and then "new C()" it
92 current namespace (and are known at the time the call is parsed) are
95 in current namespace are resolved at run-time. The call to function foo()
96 inside namespace (A\B) first tries to find and call function from current
102 first tries to use (and autoload) class from current namespace and in case
161 looks for such function in current namespace
/PHP-5.3/Zend/tests/
H A Dbug23104.phpt7 var_dump(current($bar));
/PHP-5.3/tests/classes/
H A Darrayobject_001.phpt10 echo current($a);
H A Dbug24445.phpt2 Bug #24445 (get_parent_class() returns the current class when passed an object)
/PHP-5.3/ext/date/tests/
H A Dbug35143.phpt2 Bug #35143 (gettimeofday() ignores current time zone)

Completed in 94 milliseconds

12345678910>>...22