Home
last modified time | relevance | path

Searched refs:last (Results 1 – 25 of 243) sorted by relevance

12345678910

/php-src/ext/dom/tests/
H A Dbug80602.phpt159 1 <a>foo<last/></a>
160 2 <a>foo<last/></a>
161 3 <a><last/>foo</a>
162 4 <a>foo<last/></a>
163 5 <a>foo<last/></a>
164 6 <a><last/>foo</a>
165 7 <a><last/>foo</a>
166 8 <a>foo<last/></a>
175 17 <a>barfoo<last/></a>
176 18 <a>foobar<last/></a>
[all …]
H A Dbug80602_2.phpt159 1 <a>foo<last/></a>
160 2 <a>foo<last/></a>
161 3 <a>foo<last/></a>
162 4 <a><last/>foo</a>
163 5 <a>foo<last/></a>
164 6 <a><last/>foo</a>
165 7 <a><last/>foo</a>
166 8 <a>foo<last/></a>
175 17 <a>barfoo<last/></a>
176 18 <a>foobar<last/></a>
[all …]
H A Dbug80602_3.phpt9 $doc->loadXML('<a>foo<last/></a>');
16 $doc->loadXML('<a>foo<last/></a>');
25 <a>barfoobaz<last/></a>
30 string(4) "last"
46 string(4) "last"
76 string(4) "last"
82 <a><last/>barfoobaz</a>
87 string(4) "last"
103 string(4) "last"
133 string(4) "last"
H A Dbug80602_4.phpt9 $doc->loadXML('<a>foo<last/>bar</a>');
28 <a>foobar<last/></a>
31 <a>xbar<last/></a>
34 <a>xy<last/></a>
/php-src/ext/date/tests/
H A Dbug51096.phpt7 '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 Dbug69336.phpt2 Bug #69336 (Issues with "last day of <monthname>")
7 var_dump(date('d.m.Y',strtotime('last day of april')));
8 var_dump(date('d.m.Y',strtotime('last tuesday of march 2015')));
9 var_dump(date('d.m.Y',strtotime('last wednesday of march 2015')));
10 var_dump(date('d.m.Y',strtotime('last wednesday of april 2015')));
11 var_dump(date('d.m.Y',strtotime('last wednesday of march 2014')));
12 var_dump(date('d.m.Y',strtotime('last wednesday of april 2014')));
H A Dbug32588.phpt2 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 DDateTime_setISODate_basic1.phpt21 // What date was is last year ?
23 echo "..same day last year was \"" . $datetime->format("D M j") . "\"\n";
30 ..same day last year was "Wed Jul 23"
H A Ddate_isodate_set_basic1.phpt21 // What date was is last year ?
23 echo "..same day last year was \"" . date_format($datetime, "D M j") . "\"\n";
30 ..same day last year was "Wed Jul 23"
/php-src/ext/standard/
H A Dsoundex.c28 size_t i, _small, str_len, code, last; in PHP_FUNCTION() local
64 last = -1; in PHP_FUNCTION()
75 last = soundex_table[code - 'A']; in PHP_FUNCTION()
82 if (code != last) { in PHP_FUNCTION()
86 last = code; in PHP_FUNCTION()
/php-src/ext/pcre/pcre2lib/
H A Dpcre2_substring.c76 PCRE2_SPTR first, last, entry; in pcre2_substring_copy_byname() local
81 &first, &last); in pcre2_substring_copy_byname()
164 PCRE2_SPTR first, last, entry; in pcre2_substring_get_byname() local
169 &first, &last); in pcre2_substring_get_byname()
271 PCRE2_SPTR first, last, entry; in pcre2_substring_length_byname() local
276 &first, &last); in pcre2_substring_length_byname()
499 PCRE2_SPTR last; in pcre2_substring_nametable_scan() local
502 first = last = entry; in pcre2_substring_nametable_scan()
508 while (last < lastentry) in pcre2_substring_nametable_scan()
511 last += entrysize; in pcre2_substring_nametable_scan()
[all …]
/php-src/ext/dom/
H A Dparentnode.c65 xmlNodePtr last = NULL; in dom_parent_node_last_element_child_read() local
67 last = nodep->last; in dom_parent_node_last_element_child_read()
69 while (last && last->type != XML_ELEMENT_NODE) { in dom_parent_node_last_element_child_read()
70 last = last->prev; in dom_parent_node_last_element_child_read()
74 if (!last) { in dom_parent_node_last_element_child_read()
141 xmlNodePtr last = parent->last; in dom_add_child_without_merging() local
142 last->next = child; in dom_add_child_without_merging()
143 child->prev = last; in dom_add_child_without_merging()
145 parent->last = child; in dom_add_child_without_merging()
468 parentNode->last = last; in php_dom_pre_insert_helper()
[all …]
/php-src/sapi/fpm/fpm/
H A Dfpm_env.c232 char *last = NULL; in fpm_env_init_main() local
250 if (last == NULL || fpm_globals.argv[i] == last + 1) { in fpm_env_init_main()
251 last = fpm_globals.argv[i] + strlen(fpm_globals.argv[i]); in fpm_env_init_main()
259 if (last == NULL || environ[i] == last + 1) { in fpm_env_init_main()
260 last = environ[i] + strlen(environ[i]); in fpm_env_init_main()
264 if (first == NULL || last == NULL) { in fpm_env_init_main()
268 fpm_env_argv_len = last - first; in fpm_env_init_main()
H A Dfpm_systemd.c16 static unsigned long int last=0; in fpm_systemd() local
40 …active, idle, requests, slow_req, ((float)requests - last) * 1000.0 / fpm_global_config.systemd_in… in fpm_systemd()
44 last = requests; in fpm_systemd()
/php-src/Zend/Optimizer/
H A Dnop_removal.c41 shiftlist = (uint32_t *)do_alloca(sizeof(uint32_t) * op_array->last, use_heap); in zend_optimizer_nop_removal()
43 end = op_array->opcodes + op_array->last; in zend_optimizer_nop_removal()
75 op_array->last = new_count; in zend_optimizer_nop_removal()
76 end = op_array->opcodes + op_array->last; in zend_optimizer_nop_removal()
/php-src/Zend/
H A Dzend_vm_trace_handlers.h29 static const char *last = NULL; in zend_vm_trace() local
35 if (EXPECTED(last)) { in zend_vm_trace()
37 memcpy(buf, last, last_len); in zend_vm_trace()
50 last = op; in zend_vm_trace()
/php-src/Zend/tests/variadic/
H A Donly_last_error.phpt2 Only the last argument can be variadic
10 Fatal error: Only the last parameter can be variadic in %s on line %d
/php-src/ext/intl/tests/
H A Dcpbi_getLastCodePoint_basic.phpt16 //first() and last() don't read codepoint and set the last code point var to -1
17 //The pointer is after the last read codepoint if moving forward and
18 //before the last read codepoint is moving backwards
32 $p = $codepoint_it->last();
H A Dbreakiter_last_basic.phpt2 IntlBreakIterator::last(): basic test
13 var_dump($bi->last());
/php-src/ext/standard/tests/strings/
H A Dbug25671.phpt10 "This is a last string."),
11 "This is a last string.");
20 … is strung one.";i:1;s:19:"This is strung two.";i:2;s:5:"Array";i:3;s:22:"This is a last strung.";}
23 … is strung one.";i:1;s:19:"This is strung two.";i:2;s:5:"Array";i:3;s:22:"This is a last strung.";}
/php-src/ext/standard/tests/array/
H A Dend_64bit.phpt28 /* loop through $arrays to print the last element of each sub-array */
34 /* ensure that internal pointer is moved to last element */
54 // remove last element from array, rewind and check end()
55 echo "\n-- Remove last element from array --\n";
61 // remove any element !first, !last, rewind and check end()
62 echo "\n-- Remove any element from array apart from first and last element --\n";
174 -- Remove last element from array --
178 -- Remove any element from array apart from first and last element --
H A Dend.phpt28 /* loop through $arrays to print the last element of each sub-array */
34 /* ensure that internal pointer is moved to last element */
54 // remove last element from array, rewind and check end()
55 echo "\n-- Remove last element from array --\n";
61 // remove any element !first, !last, rewind and check end()
62 echo "\n-- Remove any element from array apart from first and last element --\n";
179 -- Remove last element from array --
183 -- Remove any element from array apart from first and last element --
H A Dbug22088.phpt7 $last = array_shift ($a);
12 $last = array_shift ($a);
/php-src/tests/lang/
H A Dbug30578.phpt13 echo "This should be displayed last.\n";
31 Buffered data: This should be displayed last.
/php-src/sapi/litespeed/
H A Dlscriu.c259 char *last; in LSCRIU_load_liblscapi() local
261 if (!(lib_handle = DL_LOAD(last = "liblscapi.so")) /*|| in LSCRIU_load_liblscapi()
264 s_pid, last, dlerror()); in LSCRIU_load_liblscapi()
265 else if (!(s_lscapi_dump_me = dlsym(lib_handle, last = "lscapi_dump_me")) || in LSCRIU_load_liblscapi()
266 !(s_lscapi_prepare_me = dlsym(lib_handle, last = "lscapi_prepare_me")) || in LSCRIU_load_liblscapi()
267 !(psem_open = dlsym(pthread_lib_handle, last = "sem_open")) || in LSCRIU_load_liblscapi()
268 !(psem_post = dlsym(pthread_lib_handle, last = "sem_post")) || in LSCRIU_load_liblscapi()
269 !(psem_close = dlsym(pthread_lib_handle, last = "sem_close"))) in LSCRIU_load_liblscapi()
271 s_pid, last, dlerror()); in LSCRIU_load_liblscapi()

Completed in 39 milliseconds

12345678910