summaryrefslogtreecommitdiff
path: root/sapi/cli/php_cli.c
Commit message (Collapse)AuthorAgeFilesLines
* flush after banner printStanislav Malyshev2003-06-161-0/+1
|
* updating license information in the headers.James Cox2003-06-101-3/+3
|
* - MFB: Version output beautificationDerick Rethans2003-05-301-0/+4
|
* MFBMarcus Boerger2003-05-301-0/+4
|
* Simply print errorsMarcus Boerger2003-05-291-5/+1
|
* - MFBDerick Rethans2003-05-261-1/+8
|
* More clean way of ignoring headers in CLI since we do not need toEdin Kadribasic2003-04-281-34/+0
| | | | | | disable them selectively. This fixes problems for people who want to use session module in CLI.
* Reset option parsingMarcus Boerger2003-04-271-0/+2
| | | | | # i swear i had them in before last commit
* split parameter parsing once more: do informal queries before othersMarcus Boerger2003-04-271-48/+57
| | | | | #still a memleak in case of a parameter conflict
* Revert some ini settings to be hardcoded due to popular demandMarcus Boerger2003-04-231-5/+9
|
* Fix more shutdown wierdnessMarcus Boerger2003-04-191-1/+3
|
* Fix folding markerWez Furlong2003-04-191-1/+1
|
* Do init CG(in_compilation) here until someone finds a better placeMarcus Boerger2003-04-191-0/+1
|
* Shutdown memleaksMarcus Boerger2003-04-191-9/+10
|
* Added missing CVS Id tagsfoobar2003-04-161-0/+1
|
* Hopefully last fix on error reportingMarcus Boerger2003-04-091-1/+1
|
* more ini defaults for error message handlingMarcus Boerger2003-03-301-0/+2
|
* simplify and fixMarcus Boerger2003-03-301-3/+2
|
* use sizeof() as suggested by AndreiMarcus Boerger2003-03-291-6/+6
|
* - html errors should default to off (0) in CLIDerick Rethans2003-03-291-1/+1
|
* Eliminate some TSRMLS_FETCH() calls. Tested with Win32 build of SAPI/CGI and ↵Sebastian Bergmann2003-03-251-1/+3
| | | | SAPI/CLI on Win32.
* - reenable $argc/$argvMarcus Boerger2003-03-191-0/+3
| | | | | | - add a comment where hardcoded defaults would go # i believe we have none for now though
* make phpinfo() depend on executed sapiMarcus Boerger2003-03-181-0/+1
|
* use new callback to overwrite ini settingsMarcus Boerger2003-03-181-4/+23
| | | | | # ok now lets split html_errors and phpinfo() formatting
* - Allow long option namesMarcus Boerger2003-02-161-56/+67
| | | | | | | | | | - Update CLI's manpage @Added support for long options in CLI & CGI (e.g. --version). (Marcus) # In contrast to the preliminary patch this should work now completely. # If all long option names are accepted we may even think about MFHing.
* fix parameter string (-R & -H)Marcus Boerger2003-02-151-1/+1
|
* Make that clearMarcus Boerger2003-02-111-1/+1
|
* Added -H option to CLI binary. This option can be used to hide any argumentsIlia Alshanetsky2003-02-111-1/+14
| | | | | including the script name passed to the CLI binary.
* Define STDIN/OUT/ERR for -B -R -F -E (works as expected).Marcus Boerger2003-02-071-5/+9
| | | | | Enable exit in same switches.
* 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
|