summaryrefslogtreecommitdiff
path: root/sapi/cli
Commit message (Collapse)AuthorAgeFilesLines
* It's 2013, even for a manpageJohannes Schlüter2013-03-241-2/+2
|
* Happy New Year~Xinchen Hui2013-01-013-4/+4
|
* Remove executable permission on phptXinchen Hui2012-10-101-0/+0
|
* Fix memleak in CLIJohannes Schlüter2012-06-271-0/+3
|
* Fixed bug #62176 Test Bug - sapi/cli/tests/bug61546.phptMatt Ficken2012-05-291-1/+10
|
* Fixed bug #61546 (functions related to current script failed when chdir() in ↵Xinchen Hui2012-04-302-3/+30
| | | | cli sapi).
* more verbose skip reason in test files with not so obvious extension ↵Olivier DOUCET2012-02-253-3/+3
| | | | requirements
* - Year++Felipe Pena2012-01-013-4/+4
|
* stream_socket_server("unix://..." has a length limit, so it is better to use ↵Ferenc Kovacs2011-10-221-1/+1
| | | | the tmp dir instead of the current test dir for the socket file. see https://bugs.php.net/bug.php?id=60106
* there is a length limit on the shebang line, ignore the tests for >= 127Ferenc Kovacs2011-10-201-0/+4
|
* Update log, marking 5.4 and trunk as XFAIL due to bug #55496Christopher Jones2011-08-231-7/+27
|
* 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-013-4/+4
|
* - fix #48831 php -i has different output to php --iniPierre Joye2010-09-141-0/+1
|
* Fixed bug #50804 (Document configure.js --enable-crt-debug)Kalle Sommer Nielsen2010-08-111-1/+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
|
* Document CGI options in the manpage (bug #51718)Raphael Geissert2010-05-111-0/+28
| | | | | | Patch by Daniel Egeberg
* - Reverted r296062 and r296065Jani Taskinen2010-03-127-36/+36
|
* MFH: Improved / fixed output buffering (Michael Wallner)Jani Taskinen2010-03-117-36/+36
|
* Fixed bug #50795 (man pages have bad whatis entries)Kalle Sommer Nielsen2010-02-171-1/+0
| | | | - Patch by Debian
* Update copyright year in the man fileIlia Alshanetsky2010-01-041-2/+2
|
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-033-4/+4
|
* - Fixed bug #50209 (Compiling with libedit cannot find readline.h)Felipe Pena2009-12-132-2/+6
| | | | | (patch by tcallawa at redhat dot com)
* - Sync filesJani Taskinen2009-12-021-4/+7
|
* Fixed testIlia Alshanetsky2009-09-131-2/+2
|
* - be sure to get all crt dbg errors in stderrPierre Joye2009-09-021-2/+4
|
* - Fixed bug #48802 (printf() returns incorrect outputted length)Jani Taskinen2009-07-231-1/+1
|
* Improve wording and drop outdated linkJohannes Schlüter2009-06-291-6/+1
|
* MFH: It's 2009Johannes Schlüter2009-06-211-1/+1
|
* MFH: Added zend_eval_stringl and made create_function(), etc. binary-safeMatt Wilmas2009-06-051-1/+1
|
* MFH: Fix skipifArnaud Le Blanc2009-05-201-1/+1
|
* MFH: Inglés gramáticaHannes Magnusson2009-04-092-4/+4
|
* MFH: Fixed bug#47427 (-s outputs, not displays)Hannes Magnusson2009-04-092-4/+4
|
* - MFH: Fix ZTS buildFelipe Pena2009-04-081-5/+5
|
* MFH: Fixed bug #47893 (CLI aborts on non blocking stdout)Arnaud Le Blanc2009-04-071-1/+30
|
* MFH: Corrected fix for bug #46844 to only trigger on the 1st line of CLIIlia Alshanetsky2009-01-091-0/+21
| | | | | opened files.
* - MFH Catch exceptions in cli -aMarcus Boerger2009-01-021-1/+1
|
* MFHMarcus Boerger2008-12-311-0/+12
| | | | | | | - 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]
* - MFH Fix testMarcus Boerger2008-12-311-15/+15
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-314-5/+5
|
* MFH: Fixed endless loop in cli when ignore_user_abort is onArnaud Le Blanc2008-11-251-3/+2
|
* Added header_remove() (chsc at peytz dotdk, Arnaud)Arnaud Le Blanc2008-11-131-4/+1
| | | | | | | | | | | | | | | | | | | | | | | | | [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.
* Open STDIN and php://stdin streams with the relevantArnaud Le Blanc2008-11-042-0/+61
| | | | | | wrapper when the file descriptor is a socket (inetd, etc) Fixes bug #43731
* MFH: use getenvRob Richards2008-09-301-1/+1
|
* Fixed bug #42318 (problem with nm on AIX, not finding object files)Dmitry Stogov2008-09-011-1/+5
|