Name Date Size #Lines LOC

..05-Dec-2019-

tests/H05-Dec-2019-

CREDITSH A D05-Dec-201956 32

Makefile.fragH A D05-Dec-2019436 129

READMEH A D05-Dec-2019845 2117

TODOH A D05-Dec-20197 31

cli_win32.cH A D05-Dec-201956 32

config.m4H A D05-Dec-20192.6 KiB4035

config.w32H A D05-Dec-2019611 2116

php.1.inH A D05-Dec-20198.5 KiB442441

php_cli.cH A D05-Dec-201938.8 KiB1,4101,135

php_cli_readline.cH A D05-Dec-201910.6 KiB449374

php_cli_readline.hH A D05-Dec-20191.3 KiB263

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 register_globals
15  and register_argc_argv php.ini settings.
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