/PHP-5.3/ext/date/tests/ |
H A D | bug51096.phpt | 7 'last day', 10 'last day next month', 12 'last day of next month' 30 - month: 0; day: 1; first-day-of: false; last-day-of: false 33 last day 38 - month: 1; day: 0; first-day-of: false; last-day-of: false 42 - month: 1; day: 1; first-day-of: false; last-day-of: false 45 last day next month 50 - month: 1; day: 0; first-day-of: true; last-day-of: false 53 last day of next month [all …]
|
H A D | bug32588.phpt | 2 Bug #32588 (strtotime() error for 'last xxx' DST problem) 8 echo date('D Y/m/d/H:i:s', strtotime('last saturday', 1112703348)). "\n"; 9 echo date('D Y/m/d/H:i:s', strtotime("last sunday", 1112703348)). "\n"; 10 echo date('D Y/m/d/H:i:s', strtotime('last monday', 1112703348)). "\n";
|
H A D | date_isodate_set_basic1.phpt | 27 // What date was is last year ? 29 echo "..same day last year was \"" . date_format($datetime, "D M j") . "\"\n"; 37 ..same day last year was "Wed Jul 23"
|
H A D | DateTime_setISODate_basic1.phpt | 27 // What date was is last year ? 29 echo "..same day last year was \"" . $datetime->format("D M j") . "\"\n"; 37 ..same day last year was "Wed Jul 23"
|
/PHP-5.3/TSRM/ |
H A D | tsrm_strtok_r.c | 17 char *tsrm_strtok_r(char *s, const char *delim, char **last) in tsrm_strtok_r() argument 22 s = *last; in tsrm_strtok_r() 38 *last = s; in tsrm_strtok_r() 41 *last = s + 1; in tsrm_strtok_r() 51 char *last; 54 token = tsrm_strtok_r(foo, "/\\", &last); 57 token = tsrm_strtok_r(NULL, "/\\", &last);
|
/PHP-5.3/ext/standard/tests/general_functions/ |
H A D | set_magic_quotes_runtime_variation1.phpt | 94 New value of magic_quotes_runtime after last set is 0 99 New value of magic_quotes_runtime after last set is 1 104 New value of magic_quotes_runtime after last set is 1 109 New value of magic_quotes_runtime after last set is 1 114 New value of magic_quotes_runtime after last set is 0 119 New value of magic_quotes_runtime after last set is 1 124 New value of magic_quotes_runtime after last set is 1 129 New value of magic_quotes_runtime after last set is 1 134 New value of magic_quotes_runtime after last set is 1 139 New value of magic_quotes_runtime after last set is 1 [all …]
|
/PHP-5.3/ext/standard/ |
H A D | soundex.c | 32 int i, _small, str_len, code, last; in PHP_FUNCTION() local 71 last = -1; in PHP_FUNCTION() 82 last = soundex_table[code - 'A']; in PHP_FUNCTION() 89 if (code != last) { in PHP_FUNCTION() 93 last = code; in PHP_FUNCTION()
|
/PHP-5.3/ext/standard/tests/strings/ |
H A D | bug25671.phpt | 10 "This is a last string."), 11 "This is a last string."); 19 …:{i:0;s:23:"This is another string.";i:1;s:22:"This is a last string.";}i:3;s:22:"This is a last s… 20 …:{i:0;s:23:"This is another string.";i:1;s:22:"This is a last string.";}i:3;s:22:"This is a last s… 21 …ringtwo.";i:2;a:2:{i:0;s:23:"This is another string.";i:1;s:22:"This is a last string.";}i:3;s:18:… 22 …ringtwo.";i:2;a:2:{i:0;s:23:"This is another string.";i:1;s:22:"This is a last string.";}i:3;s:18:…
|
/PHP-5.3/ext/ereg/regex/ |
H A D | debug.c | 25 register int last; local 67 last = -1; 70 if (last < 0) { 72 last = c; 75 if (last >= 0) { 79 last = -1; 101 register int last; local 149 last = -1; 152 if (last < 0) { 154 last = i; [all …]
|
/PHP-5.3/main/ |
H A D | mergesort.c | 74 #define ICOPY_LIST(src, dst, last) \ argument 77 while(src < last) 83 #define CCOPY_LIST(src, dst, last) \ argument 86 while (src < last) 134 last = list2 + nmemb * size; in php_mergesort() 136 while (*EVAL(list2) != last) { in php_mergesort() 143 if (p2 != last) in php_mergesort() 229 last = list2 + nmemb*size; in php_mergesort() 268 u_char *f1, *f2, *s, *l2, *last, *p2; in setup() local 282 last = list1 + size * (n - i); in setup() [all …]
|
/PHP-5.3/sapi/fpm/fpm/ |
H A D | fpm_env.c | 202 char *last = NULL; in fpm_env_init_main() local 229 if (last == NULL || fpm_globals.argv[i] == last + 1) { in fpm_env_init_main() 230 last = fpm_globals.argv[i] + strlen(fpm_globals.argv[i]); in fpm_env_init_main() 238 if (last == NULL || environ[i] == last + 1) { in fpm_env_init_main() 239 last = environ[i] + strlen(environ[i]); in fpm_env_init_main() 243 if (first == NULL || last == NULL) { in fpm_env_init_main() 247 fpm_env_argv_len = last - first; in fpm_env_init_main()
|
/PHP-5.3/ext/dom/examples/ |
H A D | dom1.php | 26 $last = $rootnode->lastChild; variable 27 print_node($last); 31 $parent = $last->parentNode;
|
/PHP-5.3/ext/pcre/pcrelib/ |
H A D | pcre_get.c | 209 pcre_uchar *last = entry; in pcre_get_stringtable_entries() local 216 while (last < lastentry) in pcre_get_stringtable_entries() 219 (pcre_uchar *)(last + entrysize + IMM2_SIZE)) != 0) break; in pcre_get_stringtable_entries() 220 last += entrysize; in pcre_get_stringtable_entries() 224 *lastptr = (char *)last; in pcre_get_stringtable_entries() 227 *lastptr = (PCRE_UCHAR16 *)last; in pcre_get_stringtable_entries() 230 *lastptr = (PCRE_UCHAR32 *)last; in pcre_get_stringtable_entries() 274 char *first, *last; in get_first_set() local 276 PCRE_UCHAR16 *first, *last; in get_first_set() local 278 PCRE_UCHAR32 *first, *last; in get_first_set() local [all …]
|
/PHP-5.3/ext/imap/tests/ |
H A D | imap_alerts_error.phpt | 10 …erts that have been generated since the last page load or since the last imap_alerts() call, which…
|
/PHP-5.3/ext/standard/tests/array/ |
H A D | end.phpt | 12 Description: Advances internal pointer of array to last element, and returns its value. 32 /* loop through $arrays to print the last element of each sub-array */ 38 /* ensure that internal pointer is moved to last element */ 58 // remove last element from array, rewind and check end() 59 echo "\n-- Remove last element from array --\n"; 65 // remove any element !first, !last, rewind and check end() 66 echo "\n-- Remove any element from array apart from first and last element --\n"; 198 -- Remove last element from array -- 202 -- Remove any element from array apart from first and last element --
|
H A D | end_64bit.phpt | 12 Description: Advances internal pointer of array to last element, and returns its value. 32 /* loop through $arrays to print the last element of each sub-array */ 38 /* ensure that internal pointer is moved to last element */ 58 // remove last element from array, rewind and check end() 59 echo "\n-- Remove last element from array --\n"; 65 // remove any element !first, !last, rewind and check end() 66 echo "\n-- Remove any element from array apart from first and last element --\n"; 199 -- Remove last element from array -- 203 -- Remove any element from array apart from first and last element --
|
H A D | bug22088.phpt | 7 $last = array_shift ($a); 12 $last = array_shift ($a);
|
/PHP-5.3/tests/lang/ |
H A D | bug30578.phpt | 13 echo "This should be displayed last.\n"; 31 Buffered data: This should be displayed last.
|
/PHP-5.3/Zend/ |
H A D | bench.php | 120 $last = $n-1; 121 print "$Y[$last]\n"; 153 $last = $n-1; 154 print "$Y[$last]\n"; 169 $last = $n-1; 170 print "$Y[0] $Y[$last]\n"; 208 $last = "foo_".($n-1); 209 print "$hash1[$first] $hash1[$last] $hash2[$first] $hash2[$last]\n";
|
H A D | zend_opcode.c | 66 op_array->last = 0; in init_op_array() 227 zend_op *end = op_array->opcodes+op_array->last; in destroy_op_array() 302 zend_uint next_op_num = op_array->last++; in get_next_op() 325 return op_array->last; in get_next_op_number() 337 zend_op *opline = op_array->opcodes, *end=opline+op_array->last; in zend_update_extended_info() 379 if (!(op_array->fn_flags & ZEND_ACC_INTERACTIVE) && op_array->size != op_array->last) { in pass_two() 380 op_array->opcodes = (zend_op *) erealloc(op_array->opcodes, sizeof(zend_op)*op_array->last); in pass_two() 381 op_array->size = op_array->last; in pass_two() 385 end = opline + op_array->last; in pass_two()
|
/PHP-5.3/ext/dom/tests/ |
H A D | dom001.phpt | 29 // The last node should be identical with the last entry in the children array 30 echo "--------- last\n"; 31 $last = $rootnode->lastChild; 32 print_node($last); 34 // The parent of this last node is the root again 36 $parent = $last->parentNode; 129 --------- last
|
/PHP-5.3/ext/sqlite3/tests/ |
H A D | sqlite3_32_last_insert_rowid_param.phpt | 19 echo "Request last inserted id\n"; 35 Request last inserted id
|
/PHP-5.3/ext/dba/tests/ |
H A D | dba_cdb.phpt | 34 string(23) "The last content string" 49 string(23) "The last content string"
|
H A D | dba_dbm.phpt | 29 string(23) "The last content string" 44 string(23) "The last content string"
|
H A D | dba_db1.phpt | 29 string(23) "The last content string" 44 string(23) "The last content string"
|