Home
last modified time | relevance | path

Searched refs:current (Results 276 – 300 of 542) sorted by relevance

1...<<11121314151617181920>>...22

/PHP-5.3/ext/standard/tests/file/
H A Dfileinode_basic.phpt17 /* Getting inode of current file */
/PHP-5.3/ext/spl/tests/
H A Darray_004.phpt134 Notice: main(): ArrayIterator::current(): Array was modified outside object and is no longer an arr…
138 Notice: main(): ArrayIterator::current(): Array was modified outside object and is no longer an arr…
/PHP-5.3/TSRM/
H A DTSRM.c407 tsrm_tls_entry *current; in tsrm_set_interpreter_context() local
409 current = tsrm_tls_get(); in tsrm_set_interpreter_context()
418 return current; in tsrm_set_interpreter_context()
425 tsrm_tls_entry *new_ctx, *current; in tsrm_new_interpreter_context() local
431 current = tsrm_tls_get(); in tsrm_new_interpreter_context()
437 return tsrm_set_interpreter_context(current); in tsrm_new_interpreter_context()
/PHP-5.3/ext/standard/
H A Dstring.c837 for (current = 0; current < textlen; current++) { in PHP_FUNCTION()
843 laststart = current + 1; in PHP_FUNCTION()
845 lastspace = current; in PHP_FUNCTION()
869 for (current = 0; current < textlen; current++) { in PHP_FUNCTION()
877 if (text[current] == breakchar[0] in PHP_FUNCTION()
882 current += breakcharlen - 1; in PHP_FUNCTION()
888 else if (text[current] == ' ') { in PHP_FUNCTION()
894 laststart = current + 1; in PHP_FUNCTION()
897 lastspace = current; in PHP_FUNCTION()
908 laststart = lastspace = current; in PHP_FUNCTION()
[all …]
/PHP-5.3/ext/standard/tests/array/
H A Darray_shift_variation7.phpt22 echo key($stack) . " => " . current ($stack) . "\n";
H A Darray_push_variation5.phpt23 echo key($stack) . " => " . current ($stack) . "\n";
H A Dreset_variation2.phpt19 echo current($array) . " => " . key($array) . "\n";
/PHP-5.3/ext/session/tests/
H A Dsession_save_path_variation2.phpt15 * Description : Get and/or set the current session save path
H A Dsession_module_name_variation4.phpt16 * Description : Get and/or set the current session module
H A Dsession_encode_variation1.phpt12 * Description : Encodes the current session data as a string
H A Dsession_encode_variation8.phpt14 * Description : Encodes the current session data as a string
H A Dsession_name_variation1.phpt15 * Description : Get and/or set the current session name
/PHP-5.3/ext/date/tests/
H A Dgettimeofday_error.phpt6 * Description: Returns the current time as array
H A Dgettimeofday_basic.phpt6 * Description: Returns the current time as array
H A Dbug52113.phpt126 ["current"]=>
210 ["current"]=>
H A Ddate_sub_basic.phpt11 * Description: Subtracts an interval from the current date in object.
/PHP-5.3/ext/pdo_pgsql/tests/
H A Dbug_49985.phpt25 echo trim(current(explode("\n", $e->getMessage())))."\n";
/PHP-5.3/ext/standard/tests/class_object/
H A Dget_parent_class_error_001.phpt6 * Description: Retrieves the parent class name for object or class or current scope.
/PHP-5.3/ext/spl/examples/
H A Dautoload.inc32 * current directory of script or include file.
H A Dclass_tree.php82 function current() function in SubClasses
/PHP-5.3/ext/standard/tests/general_functions/
H A Dgetrusage_basic.phpt11 * Description: Gets the current resource usages
/PHP-5.3/tests/classes/
H A D__call_004.phpt2 When __call() is invoked via ::, ensure current scope's __call() is favoured over the specified cla…
/PHP-5.3/ext/spl/internal/
H A Dspldoublylinkedlist.inc135 /** @return the current iteration mode
161 /** @return current key
168 /** @return current object
170 public function current()
/PHP-5.3/ext/pdo_dblib/
H A Ddblib_stmt.c231 S->current = -1;
245 if (++S->current < S->nrows) {
273 pdo_dblib_colval *val = &S->rows[S->current * S->ncols + colno];
/PHP-5.3/ext/date/lib/
H A Dparse_iso_intervals.c922 timelib_time *current; in scan() local
925 current = s->end; in scan()
928 current = s->begin; in scan()
933 current->y = timelib_get_nr((char **) &ptr, 4); in scan()
934 current->m = timelib_get_nr((char **) &ptr, 2); in scan()
935 current->d = timelib_get_nr((char **) &ptr, 2); in scan()
936 current->h = timelib_get_nr((char **) &ptr, 2); in scan()
937 current->i = timelib_get_nr((char **) &ptr, 2); in scan()
938 current->s = timelib_get_nr((char **) &ptr, 2); in scan()

Completed in 49 milliseconds

1...<<11121314151617181920>>...22