Home
last modified time | relevance | path

Searched refs:current (Results 176 – 200 of 648) sorted by relevance

12345678910>>...26

/PHP-7.1/ext/date/tests/
H A Dstrtotime_basic.phpt14 * This is parsed as the "first following Monday OR the current day if it is a Monday"
19 * Monday if the current day is a Monday"
24 * Monday if the current day is a Monday"
/PHP-7.1/Zend/RFCs/
H A D002.txt15 name collisions with the current scoping methods.
30 contain all types of symbols. Zend will get the notion of a current
31 namespace, defaulting to the current global one. The current name
33 spaces than the current one may be referenced using a new namespace
45 namespaces than the current one:
124 current one with the "import" statement:
/PHP-7.1/ext/mbstring/tests/
H A Dmb_substitute_character_basic.phpt11 * Description: Sets the current substitute_character or returns the current substitute_character
H A Dmb_substitute_character_error.phpt11 * Description: Sets the current substitute_character or returns the current substitute_character
H A Dmb_substitute_character_variation2.phpt11 * Description: Sets the current substitute_character or returns the current substitute_character
H A Dmb_internal_encoding_error1.phpt11 * Description: Sets the current internal encoding or
12 * Returns the current internal encoding as a string
/PHP-7.1/ext/standard/tests/general_functions/
H A Dob_get_flush_basic.phpt8 …* Description: Get current buffer contents, flush (send) the output buffer, and delete current out…
/PHP-7.1/ext/spl/examples/
H A Ddirectorytreeiterator.inc34 /** @return the current element prefixed with ASCII graphics
36 function current()
/PHP-7.1/ext/phar/phar/
H A Ddirectorytreeiterator.inc34 /** @return the current element prefixed with ASCII graphics
36 function current()
/PHP-7.1/Zend/tests/generators/
H A Dbug71013.phpt9 function current () { throw new Exception; }
29 var_dump($x->current());
/PHP-7.1/ext/standard/tests/strings/
H A Dsetlocale_variation3.phpt16 * Description: Sets locale information.Returns the new current locale , or FALSE
21 /* If locale is "0", the locale setting is not affected, only the current setting is returned */
31 //returns current locale,before executing setlocale().
41 //returns current locale,after executing setlocale().
/PHP-7.1/ext/zip/lib/
H A Dzip_source_filep.c77 zip_uint64_t current; /* current offset */ member
292 ctx->current = ctx->start; in read_file()
297 n = ctx->end-ctx->current; in read_file()
315 ctx->current += i; in read_file()
367 new_current = (zip_int64_t)ctx->current + args->offset; in read_file()
380 ctx->current = (zip_uint64_t)new_current; in read_file()
383 if (_zip_fseek_u(ctx->f, ctx->current, SEEK_SET, &ctx->error) < 0) { in read_file()
446 return (zip_int64_t)ctx->current; in read_file()
/PHP-7.1/ext/standard/tests/dir/
H A Ddir_variation4.phpt40 echo "-- reading directory contents with current handle --\n";
41 var_dump( $e->read() ); // with current handle
70 -- reading directory contents with current handle --
H A Ddir_variation4-win32-mb.phpt46 echo "-- reading directory contents with current handle --\n";
47 var_dump( $e->read() ); // with current handle
76 -- reading directory contents with current handle --
/PHP-7.1/ext/standard/tests/array/
H A Dreset_basic.phpt19 echo key($array) . " => " . current($array) . "\n";
25 echo key($array) . " => " . current($array) . "\n";
H A Dend_basic.phpt19 echo key($array) . " => " . current($array) . "\n";
25 echo key($array) . " => " . current($array) . "\n";
H A Deach_variation6.phpt20 echo key($arr) . " => " . current($arr) . "\n";
26 echo key($arr) . " => " . current($arr) . "\n";
H A Dbug69674.phpt5 var_dump(current(array_keys(array())));
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";
/PHP-7.1/ext/spl/tests/
H A Diterator_025.phpt40 echo $it->current() . "\n";
47 echo $it->current() . "\n";
/PHP-7.1/ext/oci8/tests/
H A Dedition_1.phpt70 // Check the current edition of the DB and the contents of view_ed.
81 // Check the current edition of the DB and the contents of view_ed.
99 The value of current EDITION is MYEDITION
117 The value of current EDITION is MYEDITION1
139 The value of current EDITION is MYEDITION
/PHP-7.1/ext/spl/internal/
H A Diteratoriterator.inc77 /** \return current key
84 /** \return current value
86 function current()
88 return $this->iterator->current();
/PHP-7.1/ext/spl/
H A Dspl_fixedarray.c58 int current; member
220 intern->current = 0; in spl_fixedarray_object_new_ex()
850 object->current = 0; in spl_fixedarray_it_rewind()
863 if (object->current >= 0 && object->current < object->array.size) { in spl_fixedarray_it_valid()
901 ZVAL_LONG(key, object->current); in spl_fixedarray_it_get_current_key()
914 object->current++; in spl_fixedarray_it_move_forward()
929 RETURN_LONG(intern->current); in SPL_METHOD()
943 intern->current++; in SPL_METHOD()
957 RETURN_BOOL(intern->current >= 0 && intern->current < intern->array.size); in SPL_METHOD()
971 intern->current = 0; in SPL_METHOD()
[all …]

Completed in 43 milliseconds

12345678910>>...26