History log of /PHP-8.0/sapi/cli/php_cli.c (Results 176 – 200 of 374)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: php-5.3.3RC1, php-5.2.14RC1
# 11d24c15 31-May-2010 Michael Wallner

* implement new output API, fixing some bugs and implementing some feature
requests--let's see what I can dig out of the bugtracker for NEWS--
and while crossing the road:
* implem

* implement new output API, fixing some bugs and implementing some feature
requests--let's see what I can dig out of the bugtracker for NEWS--
and while crossing the road:
* implemented new zlib API
* fixed up ext/tidy (what was "s&" in zend_parse_parameters() supposed to do?)

Thanks to Jani and Felipe for pioneering.

show more ...


# 61db5cf9 20-May-2010 Johannes Schlüter

- Improved CLI Interactive readline shell (Johannes)
. Added cli.pager ini setting to set a pager for output.
. Added cli.prompt ini settingto configure the shell prompt.
. Added sh

- Improved CLI Interactive readline shell (Johannes)
. Added cli.pager ini setting to set a pager for output.
. Added cli.prompt ini settingto configure the shell prompt.
. Added shortcut #inisetting=value to change ini settings at run-time.
. Don't terminate shell on fatal errors.

A pager can be a an shell command which will receive the command output on its
STDIN channel

php > #cli.pager=less
php > phpinfo();
(output will appear in the pager)
php > #cli.pager=grep -i readline
php > phpcredits();
Readline => Thies C. Arntzen
php > #cli.pager=
(output appears again direct on the terminal)

A prompt can contain a few escape sequences like

php > #cli.prompt=\e[032m\v \e[031m\b \e[34m\> \e[0m
5.3.99-dev php > //Colorful prompt with version number

A prompt can also contaian PHP code in backticks

php > #cli.prompt=`echo gethostname();` \b \>
guybrush php >

show more ...


# 26af5759 30-Mar-2010 Johannes Schlüter

Add ReflectionZendExtension class and --rz option to CLI


# af49e58f 12-Mar-2010 Jani Taskinen

- Reverted r296062 and r296065


# 06f072cb 11-Mar-2010 Jani Taskinen

MFH: Improved / fixed output buffering (Michael Wallner)


Revision tags: php-5.3.2, php-5.2.13, php-5.3.2RC3, php-5.3.2RC2, php-5.2.13RC2, php-5.2.13RC1
# 9ba1e816 03-Jan-2010 Sebastian Bergmann

sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.php


Revision tags: php-5.3.2RC1, php-5.2.12
# 44116212 13-Dec-2009 Felipe Pena

- Fixed bug #50209 (Compiling with libedit cannot find readline.h)
(patch by tcallawa at redhat dot com)


Revision tags: php-5.2.12RC4, php-5.2.12RC3, php-5.2.12RC2, php-5.3.1, php-5.3.1RC4, php-5.2.12RC1, php-5.3.1RC3, php-5.3.1RC2, oci8-1.4.0, php-5.2.11, php-5.2.11RC3, php-5.3.1RC1, php-5.2.11RC2
# 4417646d 02-Sep-2009 Pierre Joye

- be sure to get all crt dbg errors in stderr


Revision tags: php-5.2.11RC1
# 6dc86fac 23-Jul-2009 Jani Taskinen

- Fixed bug #48802 (printf() returns incorrect outputted length)


Revision tags: php-5.3.0, php-5.3.0RC4, php-5.2.10, php-5.2.10RC2, php-5.3.0RC3
# d5530029 05-Jun-2009 Matt Wilmas

MFH: Added zend_eval_stringl and made create_function(), etc. binary-safe


Revision tags: php-5.2.10RC1, php-5.3.0RC2
# e2576c35 09-Apr-2009 Hannes Magnusson

MFH: Inglés gramática


# 6cda8a27 09-Apr-2009 Hannes Magnusson

MFH: Fixed bug#47427 (-s outputs, not displays)


# 844ae2f3 08-Apr-2009 Felipe Pena

- MFH: Fix ZTS build


# 95b30894 07-Apr-2009 Arnaud Le Blanc

MFH: Fixed bug #47893 (CLI aborts on non blocking stdout)


Revision tags: php-5.3.0RC1, RELEASE_1_3_5, php-5.2.9, php-5.2.9RC3, php-5.2.9RC2, php-5.2.9RC1, php-5.3.0beta1
# 71ea9535 09-Jan-2009 Ilia Alshanetsky

MFH: Corrected fix for bug #46844 to only trigger on the 1st line of CLI
opened files.


# 2aba3684 02-Jan-2009 Marcus Boerger

- MFH Catch exceptions in cli -a


# f77719d8 31-Dec-2008 Marcus Boerger

MFH
- Changed dl() to be disabled by default. Enabled only when explicitly
registered by the SAPI layer. Enabled only with CLI, CGI and EMBED. (Dmitry)
[DOC]


# 08659c2d 31-Dec-2008 Sebastian Bergmann

MFH: Bump copyright year, 3 of 3.


Revision tags: NEWS, php-5.2.8, BEFORE_HEAD_NS_CHANGES_MERGE, php-5.3.0alpha3, php-5.3.0alpha2, php-5.2.7, php-5.2.7RC5
# cc2c7209 25-Nov-2008 Arnaud Le Blanc

MFH: Fixed endless loop in cli when ignore_user_abort is on


Revision tags: php-5.2.7RC4
# 8c4151ad 13-Nov-2008 Arnaud Le Blanc

Added header_remove() (chsc at peytz dotdk, Arnaud)

[DOC] proto void header_remove([string header_name])
Removes an HTTP header previously set using header()
The header_n

Added header_remove() (chsc at peytz dotdk, Arnaud)

[DOC] proto void header_remove([string header_name])
Removes an HTTP header previously set using header()
The header_name parameter is optionnal, all headers are
removed if it is not set

[SAPIs] The header_handler callback in sapi_module_struct has
been changed, it now take a new argument.

When it is set to SAPI_HEADER_DELETE, sapi_header->header is
the name of an header, header_handler has to delete it.

When it is set to SAPI_HEADER_DELETE_ALL, header_handler has
to delete all headers.

When sapi_header_op_enum is SAPI_HEADER_ADD or _REPLACE,
sapi_header->header is in the form "Name: value", header_handler
has to add or replace the given header.

In all cases, header_handler must not free sapi_header or
sapi_header->header. SAPI_HEADER_ADD must be returned if the
header has been added or replaced, or 0 in other cases.

show more ...


Revision tags: BEFORE_HEAD_NS_CHANGE, BEFORE_NS_RULES_CHANGE, php-5.2.7RC3, php-5.2.7RC2, php-5.2.7RC1
# 593e7c7d 14-Aug-2008 Antony Dovgal

MFH: nuke unused var


# e5e6f553 13-Aug-2008 Jani Taskinen

MFH


# 05376077 12-Aug-2008 Dmitry Stogov

Fixed bug #45779 (regression with shebang lines processing)


Revision tags: php-4.4.9, php-5.3.0alpha1
# 52652010 25-Jul-2008 Antony Dovgal

fix warnings


# aa31988e 24-Jul-2008 Arnaud Le Blanc

MFH: Allow filters to work on INPUT_SERVER in CLI (bug #44779)


12345678910>>...15