summaryrefslogtreecommitdiff
path: root/sapi/cli/php_cli.c
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create branch 'PECL_OPENSSL'.PECL_OPENSSLSVN Migration2006-10-151-1297/+0
|
* Restore support for unquoted -d optionsIlia Alshanetsky2006-09-221-6/+20
|
* MFH: Fixed mess with CGI/CLI -d command line option (now it works with cgi; ↵Dmitry Stogov2006-09-191-40/+35
| | | | constants are working exactly like in php.ini; with FastCGI -d affects all requests).
* fix leak with `php -c /path -h`Antony Dovgal2006-09-151-3/+4
|
* Fixed bug #38543 (shutdown_executor() may segfault when memory_limit is too ↵Dmitry Stogov2006-08-221-2/+9
| | | | low).
* MFH: fix #37920 (compilation problems on z/OS)Antony Dovgal2006-06-271-3/+3
|
* MFH: initialize pointersAntony Dovgal2006-06-201-2/+2
|
* - Fix Bug #37780 memory leak trying to execute a non existing file (CLI)Michael Wallner2006-06-191-1/+10
|
* MFHJohannes Schlüter2006-06-031-40/+36
|
* Fixed bug #37306 (max_execution_time = max_input_time)Dmitry Stogov2006-05-111-0/+1
|
* - Update after api changesMarcus Boerger2006-05-101-1/+1
|
* - MFH: List --rf/--rc/--re only with enabled reflectionJohannes Schlüter2006-02-211-0/+2
|
* - MFH Show the exact versionMarcus Boerger2006-01-221-4/+13
|
* - Make clear what -a mode gets youMarcus Boerger2006-01-141-0/+4
|
* bump year and license versionfoobar2006-01-011-5/+5
|
* - MFH Add method support to --rfunctionMarcus Boerger2005-12-111-1/+5
|
* - MFH --r* switchesMarcus Boerger2005-12-111-0/+84
|
* MFHfoobar2005-12-061-3/+3
|
* MFH: - Fix compile failure when ext/readline is compiled as shared (bug #35249)foobar2005-11-171-7/+6
|
* Fixed memory leak on php-cli -hIlia Alshanetsky2005-11-151-5/+4
|
* MFH:- Fixed minor leak with -dzlib.output_compression=1 -mfoobar2005-11-061-5/+4
|
* MFH: Fixed -m memory leakIlia Alshanetsky2005-10-191-0/+1
|
* MFH: removed confusing dot.foobar2005-10-111-1/+1
|
* - MFH: Fix #34557 php -m exits with "error" 1Johannes Schlüter2005-10-061-6/+8
|
* - Fixed problem with -dextension=foobar.so not having it's MINIT run.foobar2005-08-081-1/+1
|
* fix extension loading from command line, resources didn't workHartmut Holzgraefe2005-08-081-1/+1
| | | | | (still related to Bug #33899)
* Fixed possible memory corruption.Ilia Alshanetsky2005-06-211-0/+3
|
* - Expose -a as special mode and show whether it is a shell or notMarcus Boerger2005-06-061-1/+6
|
* - Fix readline loop-conditionJohannes Schlüter2005-05-171-2/+1
| | | | | - Fix cli_is_valid_code detection
* - Add command completion to CLI's -a modeMarcus Boerger2005-05-141-214/+6
|
* - Improved interactive mode of CLI (php -a)Marcus Boerger2005-05-071-0/+286
|
* fix #28803 (enabled debug causes bailout errors with CLI on AIXAntony Dovgal2005-03-221-1/+4
| | | | | because of fflush() called on already closed filedescriptor)
* Revert bad idea. (no more error for invalid -d options)foobar2005-03-181-7/+3
|
* - Made CLI option -d output error and exit if an non-existing (or ↵foobar2005-03-171-3/+7
| | | | unmodifyable) entry is passed
* - ZTS fixesDerick Rethans2005-03-171-2/+2
| | | | | | #- Andrei, it would be nice if you could test ZTS builds too before you # commit...
* Make it possible to load shared extensions from command line viaAndrei Zmievski2005-03-151-1/+8
| | | | | -dextension= mechanism.
* it's 2005 alreadyWez Furlong2005-03-121-3/+3
| | | | | # and we're all too lazy to go through and update all the copyright years :)
* - Revert the weird change of ZEND_STRS() macro and use the correctfoobar2005-01-201-3/+3
| | | | | | ZEND_STRL() macro. # ZEND_STRS was changed to be same as ZEND_STRL..someone on crack? :)
* Add the new request_time sapi struct entry to all the sapis. Some of theseRasmus Lerdorf2004-12-201-0/+1
| | | | | | | may have ways of getting the request time without the extra syscall, but for now let's just make sure we don't crash and people will eventually fill these in where applicable.
* fix CLI leaks when using malformed option stringAntony Dovgal2004-11-151-1/+1
|
* Made php -m output sorted case-insensitevlyEdin Kadribasic2004-07-141-1/+1
|
* - typo (must have sleep.)Moriyoshi Koizumi2004-03-041-1/+1
|
* - Prevent cli from printing multiple "Interactive mode enabled" ifMoriyoshi Koizumi2004-03-041-3/+5
| | | | | the command line option is given more than once (like -aaaaaa).
* Bugfix #27104 CLI/CGI SAPI module variable name conflictMarcus Boerger2004-02-111-30/+30
|
* Fixed possible memory leak with INI values.Ilia Alshanetsky2004-02-061-2/+2
|
* Parse command line ini directives passed using -d before -i, to ensureIlia Alshanetsky2004-02-041-10/+12
| | | | | correct settings output.
* Add optional php-win.exe variation of the CLI sapi.Wez Furlong2004-01-141-0/+14
| | | | | | | | | | | php-win.exe runs in the windows GUI subsystem, and thus has no console; stdio handles are effectively set to /dev/null and no "dos box" will appear on screen when running scripts using this sapi (php-gtk people will be familiar with this concept). Aside from those differences, php-win.exe is 100% identical to regular CLI
* - A belated happy holidays and PHP 5Andi Gutmans2004-01-081-4/+4
|
* Disable output buffering in CLI overriding php.ini setting.Edin Kadribasic2004-01-021-0/+1
| | | | | Fixes #26755.
* add win32 configure option for CLI to switch on CRT heap debuggingWez Furlong2003-12-221-0/+14
|