codecamp

PHP7.2.0 RC6 发布,修复bug

  PHP7.2.0 RC6 发布了。PHP(PHP:Hypertext Preprocessor)是一种在电脑上执行的脚本语言,主要是用途在于处理动态网页,也包含了命令列执行接口(command line interface),或者产生图形使用者接口(GUI)程式。改进日志如下:

  - Core:

  . Fixed bug #75420 (Crash when modifing property name in __isset for

  BP_VAR_IS). (Laruence)

  - GD:

  . Fixed bug #75437 (Wrong reflection on imagewebp). (Fabien Villepinte)

  - interbase:

  . Fixed bug #75453 (Incorrect reflection for ibase_[p]connect). (villfa)

  - Mysqli:

  . Fixed bug #75434 (Wrong reflection for mysqli_fetch_all function). (Fabien

  Villepinte)

  - SOAP:

  . Fixed bug #75464 (Wrong reflection on SoapClient::__setSoapHeaders). (villfa)

  下载地址:

  https://downloads.php.net/~pollita/


哪些扩展和SAPI已经从PHP7中移除
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }