Name Date Size #Lines LOC

..05-Dec-2019-

tests/H30-Jan-2020-

CREDITSH A D05-Dec-201988 32

Makefile.fragH A D05-Dec-2019589 1310

READMEH A D05-Dec-2019826 2117

cli.hH A D05-Dec-20191.8 KiB5117

cli_win32.cH A D05-Dec-201956 32

config.m4H A D05-Dec-20193.1 KiB6249

config.w32H A D05-Dec-20191 KiB2722

generate_mime_type_map.phpH A D05-Dec-20193 KiB9075

mime_type_map.hH A D05-Dec-201940.2 KiB1,029995

php.1.inH A D05-Dec-20199.5 KiB471470

php_cli.cH A D01-Jun-202039.1 KiB1,4461,159

php_cli_process_title.cH A D05-Dec-20192.5 KiB7936

php_cli_process_title.hH A D05-Dec-20191.5 KiB4210

php_cli_server.cH A D27-Jul-202073.2 KiB2,6372,279

php_cli_server.hH A D05-Dec-20191.8 KiB4916

php_http_parser.cH A D05-Dec-201943.5 KiB1,5561,221

php_http_parser.hH A D05-Dec-20196.6 KiB248147

ps_title.cH A D05-Dec-201912.8 KiB465276

ps_title.hH A D05-Dec-20191.6 KiB4114

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