php-src/sapi/cli
2003-01-11 00:20:50 +00:00
..
config.m4 MFB: Make sure cli install dir is created before trying to install in it. 2002-12-20 10:12:15 +00:00
CREDITS Those two have enough credits already :) 2002-09-27 12:15:13 +00:00
getopt.c
Makefile.frag Follow Yasuo's suggestion and build sapi program's under the sapi-specific 2002-09-29 16:22:49 +00:00
php_cli.c Fix the line numbering when the 1st line in the script is #!. 2003-01-11 00:20:50 +00:00
php_getopt.h
README
TODO

The CLI (command line interface) SAPI has been introduced
with a goal of making PHP better at supporting the creation of 
stand alone applications.

It is based on CGI SAPI with all CGI specific things removed.

The main differences between the two:

* CLI is started up in quiet mode by default.
  (-q switch kept for compatibility)
* It does not change the working directory to that of the script.
  (-C switch kept for compatibility)
* Plain text error message
* $argc and $argv registered irrespective of register_globals
  and register_argc_argv php.ini settings.
* implicit_flush always on
* -r option which allows execution of PHP code directly from
  the command line (e.g. php -r 'echo md5("test");' )
* max_execution_time is set to unlimited, overriding php.ini setting.