Antony Dovgal
b021e04c0e
MFH: fix test
2008-04-07 12:14:04 +00:00
Felipe Pena
3230a77d89
MFB: Fixed bug #44564 (escapeshellarg removes UTF-8 multi-byte characters)
2008-03-30 12:24:10 +00:00
Marcus Boerger
c0b4683661
- MFH Use sizeof rather than strlen and cleanup
2008-03-25 21:58:29 +00:00
Rasmus Lerdorf
45e327a672
Add new empty child terminate sapi hook to the rest of the sapis
2008-03-18 22:23:21 +00:00
Dmitry Stogov
8c885b8913
Implemented concept of "delayed early binding" that allows opcode caches to 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);
}
2008-03-18 08:36:30 +00:00
Nuno Lopes
37660519cb
fix tests (removed duplicated stuff)
2008-03-17 16:32:15 +00:00
Antony Dovgal
964e0522a1
fix test
2008-03-17 14:05:39 +00:00
Marcus Boerger
af316021e8
- Rewrite scanner to be based on re2c instead of flex
...
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
2008-03-16 21:06:55 +00:00
Felipe Pena
8acaf4118c
Fix test (new constant was added in PREG)
2008-03-08 23:06:42 +00:00
Johannes Schlüter
278b7f2bdd
- MFH: New tests
2008-03-07 21:33:17 +00:00
Johannes Schlüter
95623a1d70
MFH: New tests
2008-03-01 21:55:38 +00:00
Antony Dovgal
01fa5a782b
MFH
2008-02-28 09:18:13 +00:00
Marcus Boerger
0ebb904bbb
- Small improvements, no malloc needed for the zval
2008-02-03 17:49:46 +00:00
Dmitry Stogov
8cab54a897
Fixed bug #43968 (Extending internal class causes a crash)
...
The fix is a workaround for GCC optizer bug.
2008-01-29 20:01:31 +00:00
Antony Dovgal
9a16d91117
fix test
...
Derick, you're adding new methods too fast =)
2008-01-29 12:23:48 +00:00
Hannes Magnusson
bb9fa509fe
Fix test
2008-01-27 19:10:41 +00:00
Ilia Alshanetsky
f94d19ffea
Fixed test
2008-01-13 17:23:14 +00:00
Ilia Alshanetsky
93264ecc32
Update copyright
2008-01-01 18:30:20 +00:00
Ilia Alshanetsky
79e02d8786
Update copyright
2007-12-31 21:34:42 +00:00
Sebastian Bergmann
d1dded8751
MFH: Bump copyright year, 2 of 2.
2007-12-31 07:17:19 +00:00
Antony Dovgal
996e245143
fix test
2007-12-15 12:46:22 +00:00
Rob Richards
c4575f4c4b
MFH: fix win build
2007-10-05 16:00:30 +00:00
Jani Taskinen
2bc631fb40
MFH:- Added common getopt implementation to core.
...
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.
2007-10-01 12:40:54 +00:00
Nuno Lopes
e029a0ee59
fix a few compiler warnings (mostly use of unitialized values)
2007-09-29 11:18:42 +00:00
Stanislav Malyshev
50293835bf
remove unneeded variables
2007-08-08 23:51:57 +00:00
Jani Taskinen
eb923bf6fc
MFH: - Changed AC_ARG_* options to PHP_ARG_* options.
...
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.. ;)
2007-07-11 23:20:37 +00:00
Antony Dovgal
3285bd834b
fix folding
2007-06-04 09:47:54 +00:00
foobar
6567a93a2a
fix test
2007-06-01 22:18:56 +00:00
Antony Dovgal
568525bbb5
fix test (second try)
2007-05-30 14:43:18 +00:00
Antony Dovgal
2958037b2a
fix test
2007-05-30 14:40:24 +00:00
Antony Dovgal
b529617499
fix tests
2007-05-30 10:19:39 +00:00
Johannes Schlüter
9edf1dc617
- MFH: Fix build without reflection
2007-05-06 12:57:50 +00:00
Marcus Boerger
3cd6bc54bc
- MFH --ri does not require ext/Reflection
...
- MFH --ini to show ini files being used
2007-05-05 16:21:07 +00:00
Hannes Magnusson
42170968cf
MFH: php --ri main
2007-04-25 09:56:29 +00:00
Johannes Schlüter
3d7dd44ceb
- MFH: Add my name (sync to CREDITS file)
2007-04-23 20:54:22 +00:00
Antony Dovgal
a10cd19d05
MFH: fix long options
2007-04-23 11:05:16 +00:00
Marcus Boerger
f62d5c9adf
- MFH getopt fixes
2007-04-22 15:31:16 +00:00
Dmitry Stogov
52a9667c3a
Fixed tests
2007-04-19 07:00:41 +00:00
foobar
75d8d28e71
- Fix a possible leak when multiple -c parameters are used
2007-04-17 19:46:13 +00:00
Antony Dovgal
61a3b763d8
fix tests
2007-04-13 12:29:32 +00:00
foobar
1c36d38891
- Fix test: Some people actually use --enable-debug here..
2007-03-28 12:25:33 +00:00
Johannes Schlüter
d95939d566
- MFH: Fix handling of not existing long CLI options
2007-03-22 21:35:41 +00:00
Marcus Boerger
68c1c83149
- MFH Fix issue with long form of command line switches
2007-03-21 23:20:21 +00:00
Antony Dovgal
722287a538
fix tests
2007-03-17 19:16:17 +00:00
Marcus Boerger
50ea26760d
- Avoid sprintf, even when checked copy'n'paste or changes lead to errors
2007-02-24 02:17:47 +00:00
Antony Dovgal
dfbc224555
MFH
2007-02-22 10:06:22 +00:00
Antony Dovgal
4a95928d1d
MFH: implement PHP_STREAM_FLAG_NO_CLOSE and avoid hacks
2007-02-21 21:57:21 +00:00
Antony Dovgal
748b6fdeb3
MFH: make use of startup hooks
2007-02-20 19:20:41 +00:00
Marcus Boerger
38201d8d12
- MFH php --ri <extension>
2007-02-08 16:55:34 +00:00
Antony Dovgal
1b002cf39f
use getenv()
2007-01-20 22:12:55 +00:00