Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 05-Dec-2019 | - | ||||
tests/ | H | 30-Jan-2020 | - | |||
CREDITS | H A D | 05-Dec-2019 | 88 | 3 | 2 | |
Makefile.frag | H A D | 05-Dec-2019 | 589 | 13 | 10 | |
README | H A D | 05-Dec-2019 | 826 | 21 | 17 | |
cli.h | H A D | 05-Dec-2019 | 1.8 KiB | 51 | 17 | |
cli_win32.c | H A D | 05-Dec-2019 | 56 | 3 | 2 | |
config.m4 | H A D | 05-Dec-2019 | 3.1 KiB | 62 | 49 | |
config.w32 | H A D | 05-Dec-2019 | 1 KiB | 27 | 22 | |
generate_mime_type_map.php | H A D | 05-Dec-2019 | 3 KiB | 90 | 75 | |
mime_type_map.h | H A D | 05-Dec-2019 | 40.2 KiB | 1,029 | 995 | |
php.1.in | H A D | 05-Dec-2019 | 9.5 KiB | 471 | 470 | |
php_cli.c | H A D | 01-Jun-2020 | 39.1 KiB | 1,446 | 1,159 | |
php_cli_process_title.c | H A D | 05-Dec-2019 | 2.5 KiB | 79 | 36 | |
php_cli_process_title.h | H A D | 05-Dec-2019 | 1.5 KiB | 42 | 10 | |
php_cli_server.c | H A D | 27-Jul-2020 | 73.2 KiB | 2,637 | 2,279 | |
php_cli_server.h | H A D | 05-Dec-2019 | 1.8 KiB | 49 | 16 | |
php_http_parser.c | H A D | 05-Dec-2019 | 43.5 KiB | 1,556 | 1,221 | |
php_http_parser.h | H A D | 05-Dec-2019 | 6.6 KiB | 248 | 147 | |
ps_title.c | H A D | 05-Dec-2019 | 12.8 KiB | 465 | 276 | |
ps_title.h | H A D | 05-Dec-2019 | 1.6 KiB | 41 | 14 |
README
1The CLI (command line interface) SAPI has been introduced 2with a goal of making PHP better at supporting the creation of 3stand alone applications. 4 5It is based on CGI SAPI with all CGI specific things removed. 6 7The main differences between the two: 8 9* CLI is started up in quiet mode by default. 10 (-q switch kept for compatibility) 11* It does not change the working directory to that of the script. 12 (-C switch kept for compatibility) 13* Plain text error message 14* $argc and $argv registered irrespective of the register_argc_argv 15 php.ini setting. 16* implicit_flush always on 17* -r option which allows execution of PHP code directly from 18 the command line (e.g. php -r 'echo md5("test");' ) 19* Other more sophisticated command line switches (see: man php) 20* max_execution_time is set to unlimited, overriding php.ini setting. 21