History log of /php-src/NEWS (Results 11776 – 11800 of 15465)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
Revision tags: RELEASE_2_0_0a2, RELEASE_2_0_0a1
# 5a717e71 25-Mar-2008 Andrey Hristov

Fix typo, thank Jani :)

# 598f89d8 25-Mar-2008 Andrey Hristov

news entry

# e6831f4b 20-Mar-2008 Stanislav Malyshev

document the change

# 878f817d 20-Mar-2008 Andrey Hristov

News entry

# caf3e9c3 18-Mar-2008 Andrey Hristov

Fixed a bunch of bugs reported in
Bug #44352 mysqli_connect_error() false negative for host errors
From now on the mysqli object doesn't have that magic properties, like
error, which were

Fixed a bunch of bugs reported in
Bug #44352 mysqli_connect_error() false negative for host errors
From now on the mysqli object doesn't have that magic properties, like
error, which were readable but not visible through isset(), property_exists()
and var_dump(). All other ext/mysqli classes were fixed too.
Now it will be easier to debug mysqli based applications.

show more ...

# 2b10c53a 18-Mar-2008 Felipe Pena

MFH: Dropped zend.ze1_compatibility_mode
[DOC]

# 8c885b89 18-Mar-2008 Dmitry Stogov

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

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);
}

show more ...

# 8223bb26 17-Mar-2008 Stanislav Malyshev

add request_order

# 5e803b45 17-Mar-2008 Antony Dovgal

BFN

# af316021 16-Mar-2008 Marcus Boerger

- 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 versio

- 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

show more ...

# 0e9a12d8 14-Mar-2008 Derick Rethans

- MFH: Allow datetime objects to be serialized and woken up.
- MFH: Implemented __set_state().

# 7aa69c21 13-Mar-2008 Derick Rethans

- Fixed bug #44257 (timelib_tz_lookup_table must use float for gmtoffset).

# a27d6afd 13-Mar-2008 Derick Rethans

- Added support for parsing date/time strings returned by MS SQL with strtotime().

# d269b5fd 12-Mar-2008 Felipe Pena

Merged into 5_2

# be8daf1f 12-Mar-2008 Dmitry Stogov

Optimized ZEND_FETCH_CLASS + ZEND_ADD_INTERFACE into single ZEND_ADD_INTERFACE opcode

# 0f2247ae 12-Mar-2008 Dmitry Stogov

Fixed bug #44414 (Incomplete reporting about abstract methods)

# e0de4539 12-Mar-2008 Felipe Pena

Fixed bug #44394 (Last two bytes missing from output)

# 9cb1ef66 10-Mar-2008 Andrey Hristov

Remove unneeded entry

# 5034db7c 10-Mar-2008 Andrey Hristov

Update NEWS

# 704cab59 08-Mar-2008 Andrey Hristov

update NEWS

# 03444a67 08-Mar-2008 Nuno Lopes

BFN #44214

# 11bbb016 08-Mar-2008 Felipe Pena

BFN: #39108

# 3f67ea45 08-Mar-2008 Nuno Lopes

BFN: #44336

# 342a7590 08-Mar-2008 Gwynne Raskind

BFN

# 1f150df5 08-Mar-2008 Scott MacVicar

BFN

1...<<471472473474475476477478479480>>...619