search
PHP 5.4.5 公布Jun 13, 2016 am 10:34 AM
bugfixedmemoryphpwith

PHP 5.4.5 发布
PHP 5.4.5和5.3.15发布。2012-07-19 上个版本是2012-06-15的5.4.4/5.3.14修正了30多个Bug以及几个安全漏洞。经过1个RC.

  This release fixes over 30 bugs and includes a fix for a security related overflow issue in the stream implementation.

 

  下载:http://www.php.net/get/php-5.4.5.tar.bz2/from/cn.php.net/mirror


  完全改进:

  Version 5.4.5

  19-July-2012

  Core

  Fixed bug #62443 (Crypt SHA256/512 Segfaults With Malformed Salt)

  Fixed bug #62432 (ReflectionMethod random corrupt memory on high concurrent)

  Fixed bug #62373 (serialize() generates wrong reference to the object).

  Fixed bug #62357 (compile failure: (S) Arguments missing for built-in function __memcmp)

  Fixed bug #61998 (Using traits with method aliases appears to result in crash during execution)

  Fixed bug #51094 (parse_ini_file() with INI_SCANNER_RAW cuts a value that includes a semi-colon)

  Fixed potential overflow in _php_stream_scandir (CVE-2012-2688)

  EXIF

  Fixed information leak in ext exi

  FPM

  Fixed bug #62205 (php-fpm segfaults (null passed to strstr)

  Fixed bug #62160 (Add process.priority to set nice(2) priorities)

  Fixed bug #62153 (when using unix sockets, multiples FPM instances)

  Fixed bug #62033 (php-fpm exits with status 0 on some failures to start)

  Fixed bug #61839 (Unable to cross-compile PHP with --enable-fpm)

  Fixed bug #61835 (php-fpm is not allowed to run as root)

  Fixed bug #61295 (php-fpm should not fail with commented 'user'

  Fixed bug #61218 (FPM drops connection while receiving some binary values in FastCGI requests)

  Fixed bug #61045 (fpm don't send error log to fastcgi clients). (fat) for non-root start)

  Fixed bug #61026 (FPM pools can listen on the same address). (fat) can be launched without errors)

  Iconv

  Fixed bug #55042 (Erealloc in iconv.c unsafe)

  Intl

  Fixed bug #62083 (grapheme_extract() memory leaks)

  Fixed bug #62081 (IntlDateFormatter constructor leaks memory when called twice)

  Fixed bug #62070 (Collator::getSortKey() returns garbage)

  Fixed bug #62017 (datefmt_create with incorrectly encoded timezone leaks pattern)

  Fixed bug #60785 (memory leak in IntlDateFormatter constructor)

  ResourceBundle constructor now accepts NULL for the first two arguments

  JSON

  Fixed bug #61359 (json_encode() calls too many reallocs)

  libxml

  Fixed bug #62266 (Custom extension segfaults during xmlParseFile with FPM SAPI)

  Phar

  Fixed bug #62227 (Invalid phar stream path causes crash)

  Readline

  Fixed bug #62186 (readline fails to compile - void function should not return a value)

  Reflection

  Fixed bug #62384 (Attempting to invoke a Closure more than once causes segfault)

  Fixed bug #62202 (ReflectionParameter::getDefaultValue() memory leaks with constant)

  Sockets

  Fixed bug #62025 (__ss_family was changed on AIX 5.3)

  SPL

  Fixed bug #62433 (Inconsistent behavior of RecursiveDirectoryIterator to dot files)

  Fixed bug #62262 (RecursiveArrayIterator does not implement Countable)

  XML Writer

  Fixed bug #62064 (memory leak in the XML Writer module)

  Zip

  Upgraded libzip to 0.10.

  Version 5.3.15

  19-July-2012

  Zend Engine

  Fixed bug #51094 (parse_ini_file() with INI_SCANNER_RAW cuts a value that includes a semi-colon)

  COM

  Fixed bug #62146 com_dotnet cannot be built shared

  Core

  Fixed potential overflow in _php_stream_scandir, CVE-2012-2688

  Fixed bug #62432 (ReflectionMethod random corrupt memory on high concurrent)

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

游戏bug是什么意思游戏bug是什么意思Feb 18, 2024 am 11:30 AM

游戏bug是什么意思在玩游戏的过程中,我们常常会遇到一些意想不到的错误或者问题,比如角色卡住、任务无法继续、画面闪烁等等。这些不正常的现象就被称为游戏bug,即游戏中的故障或错误。在本文中,我们将探讨游戏bug是什么意思以及对玩家和开发者的影响。游戏bug是指在游戏的开发或运行过程中出现的错误,导致游戏无法正常进行或者出现不符合预期的情况。这些错误可能是由于

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

php怎么查找字符串是第几位php怎么查找字符串是第几位Apr 22, 2022 pm 06:48 PM

查找方法:1、用strpos(),语法“strpos("字符串值","查找子串")+1”;2、用stripos(),语法“strpos("字符串值","查找子串")+1”。因为字符串是从0开始计数的,因此两个函数获取的位置需要进行加1处理。

php怎么设置implode没有分隔符php怎么设置implode没有分隔符Apr 18, 2022 pm 05:39 PM

在PHP中,可以利用implode()函数的第一个参数来设置没有分隔符,该函数的第一个参数用于规定数组元素之间放置的内容,默认是空字符串,也可将第一个参数设置为空,语法为“implode(数组)”或者“implode("",数组)”。

苹果iOS18bug汇总苹果iOS18bug汇总Jun 14, 2024 pm 01:48 PM

随着苹果WWDC发布会2024圆满落幕,不仅揭晓了macos15,其中最受关注的还是苹果iOS18新系统的更新,虽然有很多新功能出现,但是作为苹果iOS18首版不免让人纠结是否有必要升级苹果iOS18,在最新发布的苹果iOS18中又有哪些BUG存在呢?经过真实的使用测评,下面是苹果iOS18bug汇总,一起来看看吧。目前有许多iPhone用户都抢先升级到了iOS18.但各种系统Bug让人难受。有博主表示,升级iOS18要谨慎,因为“Bug多到飞起”。博主表示,如果你的iPhone是

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools