summaryrefslogtreecommitdiff
path: root/sapi/cli/php_cli.c
Commit message (Collapse)AuthorAgeFilesLines
* Bump yearXinchen Hui2015-01-151-2/+2
|
* Bump yearXinchen Hui2014-01-031-2/+2
|
* Merge branch 'PHP-5.4' into PHP-5.5Stanislav Malyshev2013-07-141-1/+2
|\ | | | | | | | | | | | | | | * PHP-5.4: Add built-in web server to invocation list Terminology: change embedded web server to built-in web server to align with cli usage Align -B and -E parameter names with cli usage (begin_code and end_code) Fix Bug #65219 DBSETLDBNAME should be called before login to set DBNAME in login record
| * Add built-in web server to invocation listLior Kaplan2013-07-141-1/+2
| |
| * Happy New YearXinchen Hui2013-01-011-2/+2
| |
* | Patch for Bug #64544.Keyur Govande2013-03-291-1/+1
| | | | | | | | | | | | The process title change module keeps track of the locally allocated environ, so it doesn't need to worry about when environ changes underneath it, for example by putenv()/setenv()
* | Support for CLI process title (https://wiki.php.net/rfc/cli_process_title)Keyur Govande2013-03-071-0/+18
| | | | | | | | A new commit into branch 5.5
* | Happy New YearXinchen Hui2013-01-011-2/+2
|/
* Fixed bug #62725 (Calling exit() in a shutdown function does not return the ↵Xinchen Hui2012-08-021-3/+3
| | | | | | exit value) The fix is make 5.4 behavior consistent with 5.3
* Merge branch 'PHP-5.3' into PHP-5.4Johannes Schlüter2012-06-271-0/+3
|\ | | | | | | | | | | | | | | * PHP-5.3: Fix memleak in CLI Conflicts: sapi/cli/php_cli.c
| * Fix memleak in CLIJohannes Schlüter2012-06-271-0/+3
| |
* | Merge remote-tracking branch 'origin/PHP-5.3' into PHP-5.4Xinchen Hui2012-04-301-3/+8
|\ \ | |/ | | | | | | | | | | | | | | * origin/PHP-5.3: Fixed bug #61546 (functions related to current script failed when chdir() in cli sapi). - BFN Conflicts: sapi/cli/php_cli.c
| * Fixed bug #61546 (functions related to current script failed when chdir() in ↵Xinchen Hui2012-04-301-3/+8
| | | | | | | | cli sapi).
| * - Year++Felipe Pena2012-01-011-2/+2
| |
| * Prevented the warning about truncate int to charXinchen Hui2011-08-081-1/+1
| |
| * - reflection is always enabledPierre Joye2011-06-251-11/+0
| |
| * - Fix missing change from r303357 (related to bug #48831)Felipe Pena2011-06-111-1/+1
| |
| * Fixed bug #52496 (Zero exit code on option parsing failure).Ilia Alshanetsky2011-05-301-1/+1
| |
| * - Year++Felipe Pena2011-01-011-2/+2
| |
| * - fix #48831 php -i has different output to php --iniPierre Joye2010-09-141-0/+1
| |
| * - Reverted fix for bug #48930 (due binary compatibility breakage)Felipe Pena2010-06-291-3/+0
| |
| * - Improved initializationFelipe Pena2010-06-271-1/+2
| |
| * - Fixed bug #48930 (__COMPILER_HALT_OFFSET__ incorrect in PHP >= 5.3)Felipe Pena2010-06-271-0/+2
| |
* | - Year++Felipe Pena2012-01-011-2/+2
| |
* | - fix bug #60272, typoPierre Joye2011-11-111-1/+1
| |
* | Fixed ZE specific compile warnings (Bug #55629)Dmitry Stogov2011-09-131-3/+3
| |
* | Prevented the warning about truncate int to charXinchen Hui2011-08-081-1/+1
| |
* | - Reverted php_printf -> printf changeFelipe Pena2011-07-011-2/+2
| |
* | - Fixed crash when using -e optionFelipe Pena2011-06-251-2/+7
| |
* | - Fixed crash when calling sapi_shutdown() and sapi hasn't been startedFelipe Pena2011-06-251-2/+5
| | | | | | | | | | Reported by: David Tajchreber
* | - Fixed crash when zend_eval_string bailouts (-r 'a();')Felipe Pena2011-06-251-404/+407
| | | | | | | | | | Reported by: David Tajchreber
* | - reflection is always enabledPierre Joye2011-06-251-11/+0
| |
* | - Fixed layout. Tabs on the terminal don't align nicely in most cases.Derick Rethans2011-06-251-33/+33
| |
* | - Fix memleak on `php -v'Felipe Pena2011-06-211-0/+1
| |
* | - Fixed hardcoded INIFelipe Pena2011-06-201-1/+1
| |
* | - Add built-in web server to CLI SAPI. See the RFC for detail.Moriyoshi Koizumi2011-06-201-616/+645
| |
* | Fixed bug #52496 (Zero exit code on option parsing failure).Ilia Alshanetsky2011-05-301-1/+1
| |
* | Declare vars first. Fix Windows build.Johannes Schlüter2011-02-221-2/+2
| |
* | - Fixed buildFelipe Pena2011-02-191-1/+1
| |
* | - Implement FR#53878 Interactive shell should work with shared readline ↵Johannes Schlüter2011-02-191-143/+27
| | | | | | | | | | | | | | | | | | extension # This is useful w/ distributors who like to build all things shared or don't # provide the readline extension. Or if a user pefers readline's behavior over # libedit which might be used by the distributor.
* | - Year++Felipe Pena2011-01-011-2/+2
| |
* | - Fixed #52045 (FPM tries to open php.ini from the current dir)Jérôme Loyet2010-11-111-0/+1
| | | | | | | | | | - Add php_ini_ignore_cwd to _sapi_module_struct
* | - fix #48831 php -i has different output to php --iniPierre Joye2010-09-141-1/+2
| |
* | Pass the TSRMS pointers to sapi_module_struct.log_message, this saves some ↵Kalle Sommer Nielsen2010-08-181-2/+2
| | | | | | | | TSRMLS_FETCH() calls in a few of our SAPI's
* | - MF5.3: Reverted fix for bug #48930 (due binary compatibility breakage)Felipe Pena2010-06-301-3/+0
| | | | | | | | | | # To commit a new common fix
* | - Improved initializationFelipe Pena2010-06-271-1/+2
| |
* | - Fixed bug #48930 (__COMPILER_HALT_OFFSET__ incorrect in PHP >= 5.3)Felipe Pena2010-06-271-0/+2
| |
* | * implement new output API, fixing some bugs and implementing some feature Michael Wallner2010-05-311-4/+4
| | | | | | | | | | | | | | | | | | | | | | 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.
* | - Improved CLI Interactive readline shell (Johannes)Johannes Schlüter2010-05-201-3/+55
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | . 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 >
* | Add ReflectionZendExtension class and --rz option to CLIJohannes Schlüter2010-03-301-6/+18
|/