summaryrefslogtreecommitdiff
path: root/sapi/cli/php_cli.c
Commit message (Collapse)AuthorAgeFilesLines
...
* No more maximum line size for -R and -FMarcus Boerger2003-02-071-2/+3
|
* remove it then....this forces to put work in man page ...Marcus Boerger2003-02-041-20/+1
|
* Fix ZTS build.Sebastian Bergmann2003-02-031-3/+3
|
* - Added -B, -F, -R, -E for line by line std in processing.Marcus Boerger2003-02-031-45/+219
| | | | | | | | | - Added some error messages. - Added more -h info. @Added command line parameters -B, -F, -R and -E which allow to process @stdin line by line (See php -h for more). (marcus) #This allows to simply complex command line constructs...
* Fix the line numbering when the 1st line in the script is #!.Ilia Alshanetsky2003-01-111-1/+3
|
* Fixed bug #21297. The fix also fixes miscalculation of lines numbers by 1Ilia Alshanetsky2003-01-081-0/+7
| | | | | due the previously mentioned bug.
* Initialize lineno using the new infrastructureZeev Suraski2003-01-051-1/+1
|
* Bump year.Sebastian Bergmann2002-12-311-2/+2
|
* Recommited the patchMoriyoshi Koizumi2002-12-201-6/+3
|
* MFB: Reverted previous patches as suggested by Andi.Edin Kadribasic2002-12-191-3/+6
|
* Fix for #20539 (patch by Moriyoshi Koizumi).Edin Kadribasic2002-12-111-3/+3
|
* Fix build.Sebastian Bergmann2002-12-091-0/+1
|
* Fixed stream leaksMoriyoshi Koizumi2002-12-081-3/+0
|
* - Made the STANDARD_SAPI_MODULE_PROPERTIES be what it says it is.foobar2002-11-261-3/+0
|
* Sort the modules and extensions before printing them when -m switch is used.Andrei Zmievski2002-11-141-5/+43
|
* - be more verboseJan Lehnardt2002-11-131-1/+1
|
* Implemented -n switch to skip parsing ini at startup as suggested by Wez.Marcus Boerger2002-11-121-2/+12
| | | | | | #The switch 'n' was planned to be used for beautifying....delete n to make #clear these functions do not have a switch yet.
* Fixed bug #20035. ZE now allows us to pass the current line position byIlia Alshanetsky2002-11-051-1/+1
| | | | | setting zend_lineno to (current_line * -1).
* call php_module_startup after zts has been initialised. This way we couldMarcus Boerger2002-11-051-6/+12
| | | | | | | have called zend_ini_deactivate(TSRMLS_C). But it seems unnecessary. #tested with ZTS and non ZTS build and many manual fail points. #now it even compiles without any warning, at least for me
* Made php -v output look nicer on standard 80 column display.Edin Kadribasic2002-11-051-1/+1
|
* Added built date and time to -v output.foobar2002-10-311-1/+1
|
* Fixed memory leaks.Ilia Alshanetsky2002-10-261-3/+4
|
* - alphabetical output for php -h (cli)Jan Lehnardt2002-10-251-8/+8
|
* add missing {}Sascha Schumann2002-10-241-1/+2
|
* - whitespaceDerick Rethans2002-10-241-2/+5
|
* Improve shutdown-behaviourSascha Schumann2002-10-241-14/+19
| | | | | Noticed by: Anantha Kesari H Y
* *** empty log message ***Derick Rethans2002-10-241-0/+1
|
* centralize #include "build-defs.h" and drop (sometimes inconsistent) otherSascha Schumann2002-10-241-2/+0
| | | | | instances
* Make CLI behave like other moder scripting languages.Yasuo Ohgaki2002-10-231-1/+0
|
* - Revert, got tricked by a stale object fileDerick Rethans2002-10-141-1/+1
|
* - Fix CLIDerick Rethans2002-10-141-1/+1
|
* - Revert changed to implicit_flush behavior. The new behavior was notDerick Rethans2002-10-031-0/+1
| | | | | intended in the first place.
* Shouldn't enable implicit_flush like this.Yasuo Ohgaki2002-10-031-1/+0
| | | | | | Most problems are fixed. If you find internal function that does not follow my comment, please fix it or let me know.
* another startup initialization fix - only ISAPI and CGI SAPI's tested,Zeev Suraski2002-09-181-2/+12
| | | | | | minor compile buglets might occur in other SAPIs, but should be trivial to fix...
* - prepare non-html phpinfo output for zend extensionsJan Lehnardt2002-09-021-0/+2
|
* change order of initialisation to allow making filename availableMarcus Boerger2002-08-101-28/+36
| | | | | through $_SERVER variables (Bug #18657)
* Needed this to be able to test safe-mode stuff on cmd-linefoobar2002-07-131-0/+1
|
* Fix exit code (bug #17733).Edin Kadribasic2002-06-131-1/+1
|
* Due to the way Zend handles exit() we cannot rely on the return codeEdin Kadribasic2002-05-261-5/+2
| | | | | of php_execute_script.
* Made constants persistent and fixed a memory leak.Edin Kadribasic2002-05-261-3/+7
|
* Register STDIN, STDOUT, and STDERR "constants" in cli in cases whereEdin Kadribasic2002-05-241-0/+50
| | | | | | | script itself is not being loaded from STDIN. This enables constructs like fwrite(STDERR, "Error 42");
* Added copyright notice to php -v output.Edin Kadribasic2002-05-111-1/+1
|
* Revert to the old php_ini.c, and reimplement the binary-path searching.Zeev Suraski2002-05-111-0/+2
| | | | | Should now also work under UNIX (CLI/CGI)
* - Prefix the first version line with 'PHP' so it's easier to use shell tools toMarkus Fischer2002-05-101-1/+1
| | | | | parse the version number (both CLI and CGI).
* - This affects both CGI and CLI sapi:Markus Fischer2002-05-101-2/+1
| | | | | | Remove Zend version output from -m switch and move it over to the output of the -v switch (-v is supposed to list version numbers, not -m).
* Added the current SAPI to the output of php -vSander Roobol2002-05-091-1/+1
|
* Force register_argc_argv=On for CLIfoobar2002-05-051-0/+1
|
* CGI/CLI take file and dir for -c option by this.Yasuo Ohgaki2002-04-121-17/+17
| | | | | @ Both 'file' and 'path to php.ini' is allowed for "-c" cli/cgi option. (Yasuo)
* WS fixfoobar2002-03-271-7/+6
|
* recorrect las checkinMarcus Boerger2002-03-271-1/+1
|