summaryrefslogtreecommitdiff
path: root/sapi/cli
Commit message (Collapse)AuthorAgeFilesLines
...
* 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
|
* - MFH Fix testMarcus Boerger2008-08-301-0/+10
|
* fix testsJani Taskinen2008-08-143-8/+5
|
* MFH: nuke unused varAntony Dovgal2008-08-141-2/+0
|
* MFHJani Taskinen2008-08-131-6/+0
|
* Fixed bug #45779 (regression with shebang lines processing)Dmitry Stogov2008-08-121-17/+0
|
* fix warningsAntony Dovgal2008-07-251-1/+1
|
* MFH: Allow filters to work on INPUT_SERVER in CLI (bug #44779)Arnaud Le Blanc2008-07-241-5/+21
|
* MFH: invert the logics - FLAG_FCLOSE -> FLAG_NO_FCLOSEAntony Dovgal2008-07-231-4/+0
|
* - MFH: Fixed bug #44246 (closedir() accepts a file resource opened by fopen())Felipe Pena2008-07-221-0/+4
|
* fix testAntony Dovgal2008-07-131-4/+9
|
* add test for the shebang thingNuno Lopes2008-07-061-0/+39
|
* fix test for good consoles (tm)Nuno Lopes2008-07-061-0/+3
|
* fix testAntony Dovgal2008-06-061-18/+43
|
* MFH: fix testAntony Dovgal2008-04-071-1/+7
|
* MFB: Fixed bug #44564 (escapeshellarg removes UTF-8 multi-byte characters)Felipe Pena2008-03-301-0/+16
|
* - MFH Use sizeof rather than strlen and cleanupMarcus Boerger2008-03-251-11/+10
|
* Add new empty child terminate sapi hook to the rest of the sapisRasmus Lerdorf2008-03-181-0/+1
|
* Implemented concept of "delayed early binding" that allows opcode caches to ↵Dmitry Stogov2008-03-181-1/+1
| | | | | | | | | | | | | | | | | | | | | | perform class declaration (early and/or run-time binding) in exactly the same order as vanila php. The following pseudo-code explains how it should be used in opcode cache. function cache_compile_file($filename) { if (!is_cached($filename)) { ... orig_compiler_options = CG(compiler_optins); CG(compiler_options) |= ZEND_COMPILE_IGNORE_INTERNAL_CLASSES | ZEND_COMPILE_DELAYED_BINDING; $op_array = orig_compile_file($filename); CG(compiler_options) = orig_copiler_options; ... } else { $op_array = restore_from_cache($filename); } zend_do_delayed_early_binding($op_array); }
* fix tests (removed duplicated stuff)Nuno Lopes2008-03-172-211/+0
|
* fix testAntony Dovgal2008-03-171-1/+1
|
* - Rewrite scanner to be based on re2c instead of flexMarcus Boerger2008-03-164-13/+226
| | | | | | | | | The full patch is available as: http://php.net/~helly/php-re2c-5.3-20080316.diff.txt This is against php-re2c repository version 98 An older patch against version 97 is available under: http://php.net/~helly/php-re2c-97-20080316.diff.txt
* Fix test (new constant was added in PREG)Felipe Pena2008-03-081-1/+2
|
* - MFH: New testsJohannes Schlüter2008-03-073-0/+95
|
* MFH: New testsJohannes Schlüter2008-03-012-0/+211
|
* MFHAntony Dovgal2008-02-281-306/+47
|
* - Small improvements, no malloc needed for the zvalMarcus Boerger2008-02-031-9/+5
|
* Fixed bug #43968 (Extending internal class causes a crash)Dmitry Stogov2008-01-291-5/+5
| | | | | The fix is a workaround for GCC optizer bug.
* fix testAntony Dovgal2008-01-291-1/+6
| | | | | Derick, you're adding new methods too fast =)
* Fix testHannes Magnusson2008-01-271-1/+13
|
* Fixed testIlia Alshanetsky2008-01-131-1/+12
|
* Update copyrightIlia Alshanetsky2008-01-011-1/+1
|
* Update copyrightIlia Alshanetsky2007-12-311-1/+1
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-313-4/+4
|
* fix testAntony Dovgal2007-12-151-1/+6
|
* MFH: fix win buildRob Richards2007-10-051-2/+2
|
* MFH:- Added common getopt implementation to core.Jani Taskinen2007-10-014-219/+5
| | | | | | | | | | MFH:- Added long-option feature to getopt(). MFH:- Made getopt() available on win32 systems. MFH: Patch by: David Soria Parra <dsp@php.net> [DOC]: These changes will be available from 5.3+ # Note: Fixed also tests and synced basic_functions.c with HEAD.
* fix a few compiler warnings (mostly use of unitialized values)Nuno Lopes2007-09-291-1/+1
|
* remove unneeded variablesStanislav Malyshev2007-08-081-12/+1
|
* MFH: - Changed AC_ARG_* options to PHP_ARG_* options.Jani Taskinen2007-07-111-12/+5
| | | | | | | | | | | | MFH: - Some cleanups here and there MFH: - Enabled PHP_CHECK_CONFIGURE_OPTIONS (checks for unknown configure MFH: options) # Note to Marcus: ext/dba/config.m4 needs to be "converted" to use # the PHP_ARG_* options. I did't touch it needs quite a lot of work to keep # it's current behaviour regarding "enabled-by-default" parts of it. # # Hint: By using the PHP_ARG_* options you have the "default" option.. ;)