Home
last modified time | relevance | path

Searched refs:start (Results 1 – 25 of 346) sorted by last modified time

12345678910>>...14

/PHP-5.5/win32/
H A Dinstall.txt423 either case, you need to start the Microsoft Management Console (may
811 wanted to start, as a CGI script (a CGI script inside of the admin
815 line as root user and start it manually - you will see there are no
1431 when I try to start apache I get undefined symbol errors:
1643 when I try to start apache I get undefined symbol errors:
/PHP-5.5/tests/lang/
H A DforeachLoop.012.phpt42 echo "\n\n\nShift elements off start of an unreferenced array";
63 echo "\n\n\nAdding elements to the start of an unreferenced array";
142 Shift elements off start of an unreferenced array
389 Adding elements to the start of an unreferenced array
H A DforeachLoop.013.phpt42 echo "\n\n\nShift elements off start of an unreferenced array, using &\$value.";
63 echo "\n\n\nAdding elements to the start of an unreferenced array, using &\$value.";
143 Shift elements off start of an unreferenced array, using &$value.
420 Adding elements to the start of an unreferenced array, using &$value.
H A DforeachLoop.014.phpt44 echo "\n\n\nShift elements off start of a referenced array";
65 echo "\n\n\nAdding elements to the start of a referenced array";
144 Shift elements off start of a referenced array
421 Adding elements to the start of a referenced array
H A DforeachLoop.015.phpt44 echo "\n\n\nShift elements off start of a referenced array, using &\$value";
65 echo "\n\n\nAdding elements to the start of a referenced array, using &\$value";
145 Shift elements off start of a referenced array, using &$value
422 Adding elements to the start of a referenced array, using &$value
/PHP-5.5/tests/func/
H A D003.phpt46 function factorial2($start, $n)
48 if ($n<=$start) {
49 return $start;
51 return factorial2($start,$n-1)*$n;
/PHP-5.5/
H A Dserver-tests.php1434 $start = strpos($wanted_re, $r, $startOffset);
1435 if ($start !== false) {
1437 $end = strpos($wanted_re, $r, $start+2);
1440 $end = $start = $length;
1444 $start = $end = $length;
1447 $temp = $temp . preg_quote(substr($wanted_re, $startOffset, ($start - $startOffset)), '/');
1449 if ($end > $start) {
1450 $temp = $temp . '(' . substr($wanted_re, $start+2, ($end - $start-2)). ')';
H A Drun-tests.php1926 $start = strpos($wanted_re, $r, $startOffset);
1927 if ($start !== false) {
1929 $end = strpos($wanted_re, $r, $start+2);
1932 $end = $start = $length;
1936 $start = $end = $length;
1939 $temp = $temp . preg_quote(substr($wanted_re, $startOffset, ($start - $startOffset)), '/');
1941 if ($end > $start) {
1942 $temp = $temp . '(' . substr($wanted_re, $start+2, ($end - $start-2)). ')';
2820 $start = $JUNIT['files'][$file_name]['start'];
2821 $JUNIT['files'][$file_name]['total'] += microtime(true) - $start;
H A Dphp.ini-development1407 ; not the end all be all of session hijacking defense, but it's a good start.
1416 ; http://php.net/session.auto-start
1898 ; that start with 'x'). Line starting with a ; are ignored (comments).
H A Dphp.ini-production1407 ; not the end all be all of session hijacking defense, but it's a good start.
1416 ; http://php.net/session.auto-start
1898 ; that start with 'x'). Line starting with a ; are ignored (comments).
/PHP-5.5/scripts/dev/
H A Dgenerate-phpt.phar1620 //Opening section and start of test case array.
/PHP-5.5/sapi/thttpd/
H A Dthttpd_patch1907 + ** if we start getting new data on this socket, "promote" it
/PHP-5.5/sapi/litespeed/
H A DREADME54 start manually from command with option "-b <socket_address>", socket
117 external application. To start PHP in Self Managed Mode, "Instances"
120 start one PHP process, this process will start/stop children PHP processes
135 and start children process on demand to save system resource. This is
/PHP-5.5/sapi/nsapi/
H A Dnsapi-readme.txt10 in the start script for your Netscape server. Windows users can
11 probably skip this step. The start script is located in:
13 <path-to-netscape-server>/https-servername/start
/PHP-5.5/sapi/fpm/
H A Dinit.d.php-fpm.in54 start)
130 $0 start
H A Dphp-fpm.conf.in262 ; start time - the date and time FPM has started;
263 ; start since - number of seconds since FPM has started;
282 ; start time: 01/Jul/2011:17:53:49 +0200
283 ; start since: 62636
312 ; start time - the date and time the process has started;
336 ; start time: 01/Jul/2011:17:53:49 +0200
337 ; start since: 63087
351 ; Note: The value must start with a leading slash (/). The value can be
363 ; Note: The value must start with a leading slash (/). The value can be
460 ; Chroot to this directory at the start. This value must be defined as an
[all …]
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_log.c411 char *start; in fpm_log_write() local
414 start = ++s; in fpm_log_write()
418 l = s - start; in fpm_log_write()
424 memcpy(format, start, l); in fpm_log_write()
H A Dfpm_main.c695 …_user_config(char *path, int path_len, const char *doc_root, int doc_root_len, int start TSRMLS_DC)
750 ptr = s2 + start; /* start is the point where doc_root ends! */
/PHP-5.5/sapi/cli/tests/
H A D013.phpt18 var_dump(`cat "$filename_txt" | "$php" -n -B 'var_dump("start");'`);
20 var_dump(`cat "$filename_txt" | "$php" -n -B 'var_dump("start");' -E 'var_dump("end");'`);
27 string(18) "string(5) "start"
31 string(34) "string(5) "start"
/PHP-5.5/sapi/cgi/
H A DCHANGES30 require each script start from "#! /usr/bin/php".
H A DREADME.FastCGI28 To run this way, you must start the PHP binary running by giving it an IP
133 page request at a time. Value 0 means that PHP willnot start additional
136 respawned automatic. Values 1 and above force PHP start additioanl processes
H A Dcgi_main.c754 …_user_config(char *path, int path_len, const char *doc_root, int doc_root_len, int start TSRMLS_DC)
809 ptr = s2 + start; /* start is the point where doc_root ends! */
1764 struct timeval start, end; local
1766 time_t start, end; local
2106 gettimeofday(&start, NULL);
2108 time(&start);
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);
[all …]
/PHP-5.5/sapi/apache2filter/
H A DREADME44 That's it. Now start bin/httpd.
/PHP-5.5/sapi/apache2handler/
H A DREADME48 That's it. Now start bin/httpd.
/PHP-5.5/main/
H A Drfc1867.c515 static char *substring_conf(char *start, int len, char quote) in substring_conf() argument
521 for (i = 0; i < len && start[i] != quote; ++i) { in substring_conf()
522 if (start[i] == '\\' && (start[i + 1] == '\\' || (quote && start[i + 1] == quote))) { in substring_conf()
523 *resp++ = start[++i]; in substring_conf()
525 *resp++ = start[i]; in substring_conf()

Completed in 86 milliseconds

12345678910>>...14