php-src/sapi/cli
Peter Kokot 4371945b8b Replace obsolete AC_TRY_FOO with AC_FOO_IFELSE
Autoconf 2.50 released in 2001 made several macros obsolete including
the AC_TRY_RUN, AC_TRY_COMPILE and AC_TRY_LINK:
http://git.savannah.gnu.org/cgit/autoconf.git/tree/ChangeLog.2

These macros should be replaced with the current AC_FOO_IFELSE instead:
- AC_TRY_RUN with AC_RUN_IFELSE and AC_LANG_SOURCE
- AC_TRY_LINK with AC_LINK_IFELSE and AC_LANG_PROGRAM
- AC_TRY_COMPILE with AC_COMPILE_IFELSE and AC_LANG_PROGRAM

PHP 5.4 to 7.1 require Autoconf 2.59+ version, PHP 7.2 and above require
2.64+ version, and the PHP 7.2 phpize script requires 2.59+ version which
are all greater than above mentioned 2.50 version therefore systems
should be well supported by now.

This patch was created with the help of autoupdate script:
autoupdate <file>

Reference docs:
- https://www.gnu.org/software/autoconf/manual/autoconf-2.69/html_node/Obsolete-Macros.html
- https://www.gnu.org/software/autoconf/manual/autoconf-2.59/autoconf.pdf
2018-07-30 02:36:38 +02:00
..
tests Merge branch 'PHP-7.2' 2018-05-18 13:41:14 +02:00
cli.h Remove unused Git attributes ident 2018-07-25 00:53:25 +02:00
cli_win32.c
config.m4 Replace obsolete AC_TRY_FOO with AC_FOO_IFELSE 2018-07-30 02:36:38 +02:00
config.w32 Remove unused Git attributes ident 2018-07-25 00:53:25 +02:00
CREDITS Add Moriyoshi Koizumi and I to the cli SAPI credits 2012-03-11 08:41:40 +00:00
generate_mime_type_map.php Added const modifier 2018-06-06 21:34:18 +07:00
Makefile.frag - Fix missing mkdir for bindir (patch by David Tajchreber) 2011-01-23 22:40:35 +00:00
mime_type_map.h Added const modifier 2018-06-06 21:34:18 +07:00
php.1.in Happy new year (Update copyright to 2018) 2018-01-02 23:42:29 +02:00
php_cli.c Pack zend_constant.flags and zend_constant.module_number into reserved space inside zend_constant.value. 2018-07-26 12:58:07 +03:00
php_cli_process_title.c Remove unused Git attributes ident 2018-07-25 00:53:25 +02:00
php_cli_process_title.h Remove unused Git attributes ident 2018-07-25 00:53:25 +02:00
php_cli_server.c Remove old SVN keywords substitutions 2018-06-16 13:04:30 +02:00
php_cli_server.h Remove old SVN keywords substitutions 2018-06-16 13:04:30 +02:00
php_http_parser.c Merge branch 'PHP-7.0' into PHP-7.1 2017-11-14 20:03:02 +01:00
php_http_parser.h Fix bug 60471 by correctly identifying unused speculative preconnections 2017-11-14 20:00:45 +01:00
ps_title.c Move includes in ps_title.c 2017-12-16 17:20:05 +01:00
ps_title.h Remove unused Git attributes ident 2018-07-25 00:53:25 +02:00
README Removed register_globals 2010-04-21 01:27:22 +00:00

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 the register_argc_argv 
  php.ini setting.
* implicit_flush always on
* -r option which allows execution of PHP code directly from
  the command line (e.g. php -r 'echo md5("test");' )
* Other more sophisticated command line switches (see: man php)
* max_execution_time is set to unlimited, overriding php.ini setting.