Home
last modified time | relevance | path

Searched refs:end (Results 1 – 25 of 631) sorted by last modified time

12345678910>>...26

/PHP-5.5/win32/
H A Dinstall.txt529 # Add to the end of the LoadModule section
532 # Add to the end of the AddModule section
1730 * Enter your PHP directory at the end, including ';' before (e.g.
1739 add: ;C:\php to the end of the line
1773 * Add a new line to the end of the file: set PHPRC=C:\php (replace
/PHP-5.5/win32/build/
H A Dconfigure.tail3 // tail end of configure
/PHP-5.5/tests/output/
H A Dob_get_contents_basic_001.phpt43 echo "\ncheck that no contents found after an end\n";
70 check that no contents found after an end
/PHP-5.5/tests/lang/
H A Dbug35382.phpt2 Bug #35382 (Comment in end of file produces fatal error)
H A DforeachLoop.012.phpt35 echo "\nPopping elements off end of an unreferenced array";
56 echo "\n\n\nAdding elements to the end of an unreferenced array";
73 Popping elements off end of an unreferenced array
280 Adding elements to the end of an unreferenced array
H A DforeachLoop.013.phpt35 echo "\nPopping elements off end of an unreferenced array, using &\$value.";
56 echo "\n\n\nAdding elements to the end of an unreferenced array, using &\$value.";
73 Popping elements off end of an unreferenced array, using &$value.
281 Adding elements to the end of an unreferenced array, using &$value.
H A DforeachLoop.014.phpt37 echo "\nPopping elements off end of a referenced array";
58 echo "\n\n\nAdding elements to the end of a referenced array";
74 Popping elements off end of a referenced array
282 Adding elements to the end of a referenced array
H A DforeachLoop.015.phpt37 echo "\nPopping elements off end of a referenced array, using &\$value";
58 echo "\n\n\nAdding elements to the end of a referenced array, using &\$value";
75 Popping elements off end of a referenced array, using &$value
283 Adding elements to the end of a referenced array, using &$value
/PHP-5.5/tests/classes/
H A Dprivate_members.phpt17 echo __METHOD__ . "(end)\n";
38 echo __METHOD__ . "(end)\n";
71 base::__construct(end)
90 derived::__construct(end)
H A Dctor_dtor.phpt30 //unset($t); delay to end of script
/PHP-5.5/
H A Dserver-tests.php1437 $end = strpos($wanted_re, $r, $start+2);
1438 if ($end === false) {
1440 $end = $start = $length;
1444 $start = $end = $length;
1449 if ($end > $start) {
1450 $temp = $temp . '(' . substr($wanted_re, $start+2, ($end - $start-2)). ')';
1452 $startOffset = $end + 2;
H A Drun-tests.php1929 $end = strpos($wanted_re, $r, $start+2);
1930 if ($end === false) {
1932 $end = $start = $length;
1936 $start = $end = $length;
1941 if ($end > $start) {
1942 $temp = $temp . '(' . substr($wanted_re, $start+2, ($end - $start-2)). ')';
1944 $startOffset = $end + 2;
/PHP-5.5/scripts/dev/generate-phpt/src/
H A DgtTestSubject.php136 return end($this->allowedArgumentLists);
/PHP-5.5/scripts/dev/
H A Dgenerate-phpt.phar1174 return end($this->allowedArgumentLists);
/PHP-5.5/sapi/nsapi/
H A Dnsapi-readme.txt28 for iPlanet/Sun Webserver 6.0 and above however at the end of the
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_str.h10 char *d, *end; in str_purify_filename() local
13 end = dst + size - 1; in str_purify_filename()
15 for (; d < end && *src; ++d, ++src) { in str_purify_filename()
H A Dfastcgi.c247 char *cur, *end; in fcgi_set_allowed_clients() local
263 end = strchr(cur, ','); in fcgi_set_allowed_clients()
264 if (end) { in fcgi_set_allowed_clients()
265 *end = 0; in fcgi_set_allowed_clients()
266 end++; in fcgi_set_allowed_clients()
277 cur = end; in fcgi_set_allowed_clients()
386 if (p < end) { in fcgi_get_params_len()
391 else if (p + 3 < end) { in fcgi_get_params_len()
410 for (; p != end; ++p) { in fcgi_param_get_eff_len()
443 while (p < end) { in fcgi_get_params()
[all …]
/PHP-5.5/sapi/cli/tests/
H A D013.phpt19 var_dump(`cat "$filename_txt" | "$php" -n -E 'var_dump("end");'`);
20 var_dump(`cat "$filename_txt" | "$php" -n -B 'var_dump("start");' -E 'var_dump("end");'`);
29 string(16) "string(3) "end"
32 string(3) "end"
/PHP-5.5/sapi/cli/
H A Dphp_cli_server.c1743 const char *vpath = client->request.vpath, *end = vpath + client->request.vpath_len, *p = end; in php_cli_server_client_read_request_on_message_complete() local
1744 client->request.ext = end; in php_cli_server_client_read_request_on_message_complete()
1751 client->request.ext_len = end - p; in php_cli_server_client_read_request_on_message_complete()
/PHP-5.5/sapi/cgi/
H A Dcgi_main.c1764 struct timeval start, end; local
1766 time_t start, end; local
2574 gettimeofday(&end, NULL);
2575 sec = (int)(end.tv_sec - start.tv_sec);
2576 if (end.tv_usec >= start.tv_usec) {
2577 usec = (int)(end.tv_usec - start.tv_usec);
2580 usec = (int)(end.tv_usec + 1000000 - start.tv_usec);
2584 time(&end);
2585 sec = (int)(end - start);
H A Dfastcgi.c172 char *end; member
247 p->end = p->pos + seg_size; in fcgi_hash_strndup()
695 char *cur, *end; in fcgi_listen() local
710 end = strchr(cur, ','); in fcgi_listen()
711 if (end) { in fcgi_listen()
712 *end = 0; in fcgi_listen()
713 end++; in fcgi_listen()
720 cur = end; in fcgi_listen()
854 while (p < end) { in fcgi_get_params()
857 if (UNEXPECTED(p + 3 >= end)) return 0; in fcgi_get_params()
[all …]
/PHP-5.5/sapi/apache2filter/
H A DREADME36 At the end of conf/httpd.conf, add:
/PHP-5.5/sapi/apache2handler/
H A DREADME40 At the end of conf/httpd.conf, add:
/PHP-5.5/sapi/apache_hooks/
H A DapMakefile.libdir4 copy the Makefile.tmpl onto the end.
H A DapMakefile.tmpl56 # We really don't expect end users to use this rule. It works only with

Completed in 149 milliseconds

12345678910>>...26