PHP Release 8.1.26


PHP 8.1.26 Release Announcement

The PHP development team announces the immediate availability of PHP 8.1.26. This is a bug fix release.

All PHP 8.1 users are encouraged to upgrade to this version.

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

Source Code
PHP 8.1.26 (tar.gz)
SHA256: d954cecfc3d294c2fccbe2b1a6bef784ce0d6c5d44a9e28f8a527e092825f2cb
PHP 8.1.26 (tar.bz2)
SHA256: 83bde249c84aa1a043a8c8d0eea09345c2cae69b9784cdf02229fc916fbb9ea0
PHP 8.1.26 (tar.xz)
SHA256: 17f87133596449327451ad4b8d9911bfaea59ff5109f3a6f2bb679f967a8ea0f
Change Logs
core
  • Fixed bug GH-12468 (Double-free of doc_comment when overriding static property via trait).
  • Fixed segfault caused by weak references to FFI objects.
  • Fixed max_execution_time: don't delete an unitialized timer.
dom
  • Fix registerNodeClass with abstract class crashing.
  • Add missing NULL pointer error check.
  • Fix validation logic of php:function() callbacks.
fiber
  • Fixed bug GH-11121 (ReflectionFiber segfault).
fpm
  • Fixed bug GH-9921 (Loading ext in FPM config does not register module handlers).
  • Fixed bug GH-12232 (FPM: segfault dynamically loading extension without opcache).
intl
  • Removed the BC break on IntlDateFormatter::construct which threw an exception with an invalid locale.
opcache
  • Added warning when JIT cannot be enabled.
  • Fixed bug GH-8143 (Crashes in zend_accel_inheritance_cache_find since upgrading to 8.1.3 due to corrupt on-disk file cache).
openssl
  • Fixed bug GH-12489 (Missing sigbio creation checking in openssl_cms_verify).
pcre
  • Fixed bug GH-11374 (Backport upstream fix, Different preg_match result with -d pcre.jit=0).
soap
  • Fixed bug GH-12392 (Segmentation fault on SoapClient::__getTypes).
  • Fixed bug #66150 (SOAP WSDL cache race condition causes Segmentation Fault).
  • Fixed bug #67617 (SOAP leaves incomplete cache file on ENOSPC).
  • Fix incorrect uri check in SOAP caching.
  • Fix segfault and assertion failure with refcounted props and arrays.
  • Fix potential crash with an edge case of persistent encoders.
  • Fixed bug #75306 (Memleak in SoapClient).
streams
  • Fixed bug #75708 (getimagesize with "&$imageinfo" fails on StreamWrappers).
xmlreader
  • Add missing NULL pointer error check.
xmlwriter
  • Add missing NULL pointer error check.
xsl
  • Add missing module dependency.
  • Fix validation logic of php:function() callbacks.
To Top