PHP Release 5.4.7


PHP 5.4.7 Release Announcement

The PHP development team would like to announce the immediate availability of PHP 5.4.7. Over 20 bugs were fixed. All users of PHP are encouraged to upgrade to this release.

For source downloads of PHP 5.4.7 please visit our downloads page, Windows binaries can be found on windows.php.net/download/. The list of changes is recorded in the ChangeLog.

Source Code
Change Logs
core
  • Fixed bug (segfault while build with zts and GOTO vm-kind).
  • Fixed bug #62844 (parse_url() does not recognize //). .
  • Fixed bug #62829 (stdint.h included on platform where HAVE_STDINT_H is not set).
  • Fixed bug #62763 (register_shutdown_function and extending class).
  • Fixed bug #62725 (Calling exit() in a shutdown function does not return the exit value).
  • Fixed bug #62744 (dangling pointers made by zend_disable_class).
  • Fixed bug #62716 (munmap() is called with the incorrect length).
  • Fixed bug #62358 (Segfault when using traits a lot).
  • Fixed bug #62328 (implementing __toString and a cast to string fails)
  • Fixed bug #51363 (Fatal error raised by var_export() not caught by error handler).
  • Fixed bug #40459 (Stat and Dir stream wrapper methods do not call constructor).
curl
  • Fixed bug #62912 (CURLINFO_PRIMARY_* AND CURLINFO_LOCAL_* not exposed).
  • Fixed bug #62839 (curl_copy_handle segfault with CURLOPT_FILE).
intl
  • Fixed Spoofchecker not being registered on ICU 49.1.
  • Fix bug #62933 (ext/intl compilation error on icu 3.4.1).
  • Fix bug #62915 (defective cloning in several intl classes).
installation
  • Fixed bug #62460 (php binaries installed as binary.dSYM).
pcre
  • Fixed bug #55856 (preg_replace should fail on trailing garbage).
pdo
  • Fixed bug #62685 (Wrong return datatype in PDO::inTransaction()).
reflection
  • Fixed bug #62892 (ReflectionClass::getTraitAliases crashes on importing trait methods as private).
  • Fixed bug #62715 (ReflectionParameter::isDefaultValueAvailable() wrong result).
session
  • Fixed bug (segfault due to retval is not initialized).
  • Fixed bug (segfault due to PS(mod_user_implemented) not be reseted when close handler call exit).
  • SOAP
  • Fixed bug #50997 (SOAP Error when trying to submit 2nd Element of a choice).
spl
  • Fixed bug #62904 (Crash when cloning an object which inherits SplFixedArray)
  • Implemented FR #62840 (Add sort flag to ArrayObject::ksort).
standard
  • Fixed bug #62836 (Seg fault or broken object references on unserialize()).
fpm
  • Merged PR 121 by minitux to add support for slow request counting on PHP FPM status page.
To Top