History log of /php-src/NEWS (Results 10301 – 10325 of 15462)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# e510daf2 25-Apr-2011 Dmitry Stogov

Fixed bug #54585 (track_errors causes segfault)

# 1153eaf5 21-Apr-2011 Pierrick Charron

Revert bug #54454 fix from PHP_5_3 branch to avoid BC break in minor release

# c157f4b4 20-Apr-2011 Dmitry Stogov

Fixed bug #54367 (Use of closure causes problem in ArrayAccess).

# 5ca8ba7a 18-Apr-2011 Hannes Magnusson

Add an --man-dir to php-config too

# a0d80503 18-Apr-2011 Hannes Magnusson

Expose PHP_MANDIR
Useful for apps (like the pear installer, phd, .. etc) to install their manpages into the same dir as php did :]

# 339f4623 17-Apr-2011 Stanislav Malyshev

implement FR #54540 - Allow loading of arbitrary resource bundles when fallback is disabled

# 1b6dd180 15-Apr-2011 Rob Richards

Implement FR #48587 (MySQL PDO driver doesn't support SSL connections)

# 833ec62d 13-Apr-2011 Stanislav Malyshev

add CVE

# 2e206e07 13-Apr-2011 Stanislav Malyshev

fix bug #54238 (use-after-free in substr_replace())

# 0e80f262 12-Apr-2011 Ilia Alshanetsky

Fixed bug #54121 (error message format string typo).

# 047ed8df 09-Apr-2011 Gustavo André dos Santos Lopes

- Fixed bug #54440: libxml extension ignores default context.

# f2cfb997 09-Apr-2011 Gustavo André dos Santos Lopes

- Fixed bug #54494: mb_substr() mishandles UTF-32LE and UCS-2LE.

# 6f3148db 09-Apr-2011 Sebastian Bergmann

Add optional argument to debug_backtrace() and debug_print_backtrace() to limit the amount of stack frames returned.

# def1ab1e 08-Apr-2011 Dmitry Stogov

- Fixed bug #54358 (Closure, use and reference)
- Fixed bug #54039 (use() of static variables in lambda functions can break staticness)

# 03b6daed 07-Apr-2011 Dmitry Stogov

Fixed bug #54372 (Crash accessing global object itself returned from its __get() handle)

# 840308cf 06-Apr-2011 Adam Harvey

Implement FR #54459 (Range function accuracy) by changing the way range()
calculates values when used with floating point bounds/step.

# 2975308e 04-Apr-2011 Gustavo André dos Santos Lopes

- Fixed bug #54384 (Dual iterators, GlobIterator, SplFileObject and
SplTempFileObject crash when user-space classes don't call the paren
constructor).

# 47012ccd 03-Apr-2011 Ilia Alshanetsky

Fixed bug #53037 (FILTER_FLAG_EMPTY_STRING_NULL is not implemented).

# 4919f328 03-Apr-2011 Pierrick Charron

Fixed bug #54454 (substr_compare incorrectly reports equality in some cases)

# 689268a0 01-Apr-2011 Pierre Joye

- add CURLINFO_REDIRECT_URL

# dd5781bc 31-Mar-2011 Antony Dovgal

fix bug #54423 (classes from dl()'ed extensions are not destroyed)

# 1dbfe6e3 29-Mar-2011 Felipe Pena

- BFN

# f335f27b 28-Mar-2011 Pierre Joye

- not applied yet

# 4551bd57 28-Mar-2011 Pierre Joye

- Fixed bug #48465 (sys_get_temp_dir() possibly inconsistent, windows fix

# b83e243c 27-Mar-2011 Arnaud Le Blanc

Added CallbackFilterIterator and RecursiveCallbackFilterIterator classes

[DOC] This is a concrete FilterIterator which takes a callback as
constructor parameter, and uses this callback f

Added CallbackFilterIterator and RecursiveCallbackFilterIterator classes

[DOC] This is a concrete FilterIterator which takes a callback as
constructor parameter, and uses this callback for filtering. This allows
to use FilterIterator without extending it.

CallbackFilterIterator Example:

$it = new ArrayIterator(range(1,100));
$it = new CallbackFilterIterator($it, function($value) {
return $value % 2;
});
foreach($it as $value) // ...

RecursiveCallbackFilterIterator Example:

$it = new RecursiveDirectoryIterator("/");
$it = new RecursiveCallbackFilterIterator($it, function($file, $k, $it) {
return $it->hasChildren() || $file->getSize() > 1024;
});
foreach(new RecursiveIteratorIterator($it) as $file) // ...

The callback takes the current value, the current key and the inner
iterator as parameters.

show more ...

1...<<411412413414415416417418419420>>...619