【PHP】PHP5.4.0版本號ChangeLog具體解釋(上)

前言

隨着大量的框架使用composer和namespace,漸漸的線上環境也從以前的5.3變成了5.4或者5.5甚至5.6,隨着7月份PHP7的公佈,會有不少其它的公司採用新版本號。php

以前很久就想寫這種一片文章,來講明下各個版本號的差別。此次算是拿出時間了。html

此次的是第一篇,眼下規劃寫三篇java

  • PHP5.4.0
  • PHP5.5.0
  • PHP5.6.0

一方面是對本身的知識的整理,一方面是對本身的一次提高。web

官方說明

官方文檔地址 http://php.net/ChangeLog-5.php#5.4.0算法

具體說明

01 Mar 2012

原文sql

  • autoconf 2.59+ is now supported (and required) for generating the configure script with ./buildconf. Autoconf 2.60+ is desirable otherwise the configure help order may be incorrect.

翻譯編程

autoconf 2.59 +現在支持(需要)生成配置腳本/ buildconf。autoconf 2.60 +是理想的配置,不然有多是不對的。windows

autoconf

php編譯安裝的時候需要的依賴軟件。因此新版本號相應配套的軟件也要換成最新的對性能來說才保險啊~api

Removed legacy features 移除的特性

原文數組

  • break/continue $var syntax.
  • Safe mode and all related ini options.
  • register_globals and register_long_arrays ini options.
  • import_request_variables().
  • allow_call_time_pass_reference.
  • define_syslog_variables ini option and its associated function.
  • highlight.bg ini option.
  • Session bug compatibility mode (session.bug_compat_42 and session.bug_compat_warn ini options).
  • session_is_registered(), session_register() and session_unregister() functions.
  • y2k_compliance ini option.
  • magic_quotes_gpc, magic_quotes_runtime and magic_quotes_sybase ini options. get_magic_quotes_gpc, get_magic_quotes_runtime are kept but always return false, set_magic_quotes_runtime raises an E_CORE_ERROR.
  • Removed support for putenv(「TZ=..」) for setting the timezone.
  • Removed the timezone guessing algorithm in case the timezone isn’t set with date.timezone or date_default_timezone_set(). Instead of a guessed timezone, 「UTC」 is now used instead.

翻譯

  • break/continue$ var語法。
  • 安全模式和所有相關的INI選項。
  • register_globals和register_long_arrays INI選項。
  • import_request_variables()。
  • allow_call_time_pass_reference。

  • define_syslog_variables INI選項及其相關的功能。

  • highlight.bg INI選項。

  • 會話錯誤兼容模式(session.bug_compat_42和session.bug_compat_warn INI選項)。

  • session_is_registered(),session_register()和session_unregister()功能。
  • y2k_compliance INI選項。
  • magic_quotes_gpc,magic_quotes_runtime和magic_quotes_sybase INI選項。get_magic_quotes_gpc。get_magic_quotes_runtime保存但始終返回false,set_magic_quotes_runtime引起e_core_error。
  • 再也不支持putenv(「TZ = ..」)設置時區。
  • 假設不設置時區與時區date.timezone或date_default_timezone_set()除去推測算法。

    而不是推測的時區,「UTC」現在是用來取代。

我是拿百度翻譯來的我會亂說嗎? =_=

break/continue

移除了break/continue $var語法

在5.4以前,咱們可以經過傳遞後面的參數來控制跳出或者中止若干層的循環,然而在5.4.0的版本號以後,就去除了這個特性。

break $c;
continue $c;

break and continue accepts a number, that specify the number of nested loops, that should be breaked up, or continued.

參考資料

PHP 的安全模式是爲了試圖解決共享服務器(shared-server)安全問題而設立的。

在結構上,試圖在 PHP 層上解決問題是不合理的,但改動 web 服務器層和操做系統層顯得很是不現實。所以不少人,特別是 ISP。眼下使用安全模式。

語言的發展是在不斷的進步的啊,也是一個不斷試錯改錯的過程。^_^

  • 保安措施和安全模式,也就是移除了php.ini中所有safe_mode相關的配置項
  • 被安全模式限制或屏蔽的函數 。

    在安全限制模式下,有些函數不能被使用。

    這個限制也將被移除

參考資料

register_globals and register_long_arrays ini options.

這兩個配置項因爲性能關係被移除了。

參考資料

import_request_variables()

import_request_variables — 將 GET/POST/Cookie 變量導入到全局做用域中

bool import_request_variables ( string types[,string prefix ] )
將 GET/POST/Cookie 變量導入到全局做用域中。假設你禁止了 register_globals,但又想用到一些全局變量,那麼此函數就很是實用。

你可以使用 types 參數指定需要導入的變量。可以用字母‘G’、‘P’和‘C’分別表示 GET、POST 和 Cookie。這些字母不區分大寫和小寫,因此你可以使用‘g’、‘p’和‘c’的不論什麼組合。POST 包括了經過 POST 方法上傳的文件信息。注意這些字母的順序,當使用「gp」時。POST 變量將使用一樣的名字覆蓋 GET 變量。

不論什麼 GPC 之外的字母都將被忽略。

prefix 參數做爲變量名的前綴,置於所有被導入到全局做用域的變量以前。因此假設你有個名爲「userid」的 GET 變量,同一時候提供了「pref_」做爲前綴,那麼你將得到一個名爲 $pref_userid 的全局變量。

假設你對導入其它全局變量(好比 SERVER 變量)感興趣,請考慮使用 extract()。

參考資料

allow_call_time_pass_reference

是否啓用在函數調用時強制參數被依照引用傳遞。此方法已不被同意並在 PHP/Zend 將來的版本號中很是可能再也不支持。鼓舞使用的方法是在函數定義中指定哪些參數應該用引用傳遞。鼓舞你們嘗試關閉此選項並確保腳本可以正常運行。以確保該腳本也能在將來的版本號中運行(每次使用此特性都會收到一條警告,參數會被按值傳遞而不是依照引用傳遞)。

在函數調用時經過引用傳遞參數是不推薦的,因爲它影響到了代碼的整潔。假設函數的參數沒有聲明做爲引用傳遞,函數可以經過未寫入文檔的方法改動其參數。要避免其反作用,最好僅在函數聲明時指定那個參數需要經過引用傳遞。

參考資料

define_syslog_variables

初始化syslog相關的設置項,從這個版本號進行了移除。

define_syslog_variables()僅僅定義了全局變量。

常數已經永遠的定義,假設日誌模塊載入。你do not需要調用這個使用syslog常數。

也就是咱們假設想要使用syslog相關的參數。直接調用便可,不需要進行手動初始化。

參考資料

highlight.bg ini option.

Colors for Syntax Highlighting mode. Anything that’s acceptable in would work.

和這個高亮相關配置項還有如下幾個,對代碼高亮的顏色進行配置
- highlight.comment
- highlight.default
- highlight.html
- highlight.keyword
- highlight.string

參考資料

Session bug compatibility mode

php.ini中有說明
這是php4.3.0之後纔有的安全設置。
出於安全的考慮php不建議你打開register_globals開關
但若關閉了register_globals(默認)時,session變量將不被本身主動轉換成全局變量
此時傳統的session變量註冊方式session_register就失去意義了(session_register是把一個全局變量註冊成session變量),因爲訪問session變量需要使用 SESSION

僅僅 _SESSION數組就可以了,而無須再用session_register註冊了。

以避免產生混亂

開關session.bug_compat_42 和 session.bug_compat_warn 就是爲了檢查此類狀況而設置的

參考資料

session_is_registered(), session_register() and session_unregister() functions.

這裏提到的三個session相關的函數

  • session_is_registered()
  • session_register()
  • session_unregister()

這些是session相關的註冊相關的函數。

參考資料

y2k_compliance ini option.

這。。

是關於2000的時候的千年蟲的配置項。

參考資料

magic_quotes_gpc

magic_quotes_gpc。magic_quotes_runtime和magic_quotes_sybase INI選項。

get_magic_quotes_gpc,get_magic_quotes_runtime保存但始終返回false,set_magic_quotes_runtime引起e_core_error。

這個配置被撤銷以後。假設再使用就會引起錯誤。

Removed support for putenv(「TZ=..」) for setting the timezone

再也不支持putenv(「TZ = ..」)設置時區,也就是不能再經過這個函數來設置時區相關的環境配置了.

加入 setting 到服務器環境變量。 環境變量僅存活於當前請求期間。

在請求結束時環境會恢復到初始狀態。

設置特定的環境變量也有多是一個潛在的安全漏洞。 safe_mode_allowed_env_vars 包括了一個以逗號分隔的前綴列表。 在安全模式下,用戶可以僅能改動用該指令設定的前綴名稱的指令。 默認狀況下,用戶僅可以改動以 PHP_ 開頭的環境變量(好比 PHP_FOO=BAR)。

注意:假設此指令是空的,PHP贊成用戶設定隨意環境變量!

可見這個函數真是危急啊。

。。

參考資料

Removed the timezone guessing algorithm in case the timezone isn’t set with date.timezone or date_default_timezone_set(). Instead of a guessed timezone, 「UTC」 is now used instead.

假設不設置時區與時區date.timezone或date_default_timezone_set()除去推測算法。

而不是推測的時區,「UTC」現在是用來取代。

date_default_timezone_set() 設定用於所有日期時間函數的默認時區。

Note:
自 PHP 5.1.0 起(此版本號日期時間函數被重寫了),假設時區不合法則每個對日期時間函數的調用都會產生一條 E_NOTICE 級別的錯誤信息,假設使用系統設定或 TZ 環境變量則還會產生 E_STRICT 級別的信息。

參考資料

Moved extensions to PECL 移動擴展PECL

原文

  • ext/sqlite. (Note: the ext/sqlite3 and ext/pdo_sqlite extensions are not affected)

翻譯

  • EXT / SQLite。(注:EXT / sqlite3和EXT / pdo_sqlite擴展不受影響)

ext/sqlite

This package is not maintained anymore and has been superseded. Package has moved to channel http://php.net/sqlite, package .
這個包是否是保持了與已被取代。包已經轉移到渠道http://php.net/sqlite。包。

也就是說這個sqlite從pecl轉移到了SQLite的擴展中。

參考資料

General improvements 通常的改進

原文

  • Added short array syntax support ([1,2,3]), see UPGRADING guide for full details.
  • Added binary numbers format (0b001010).
  • Added support for Class::{expr}() syntax.
  • Added multibyte support by default. Previously php had to be compiled with –enable-zend– multibyte. Now it can be enabled or disabled through zend.multibyte directive in php.ini.
  • Removed compile time dependency from ext/mbstring.
  • Added support for Traits.
  • Added closure $this support back.
  • Added array dereferencing support.
  • Added callable typehint.
  • Added indirect method call through array. #47160.
  • Added DTrace support.
  • Added class member access on instantiation (e.g. (new foo)->bar()) support.
  • <?

    =is now always available regardless of the short_open_tag setting.

  • Implemented Zend Signal Handling (configurable option –enable-zend-signals, off by default).
  • Improved output layer, see README.NEW-OUTPUT-API for internals.
  • lmproved unix build system to allow building multiple PHP binary SAPIs and one SAPI module the same time. #53271, #52419.
  • Implemented closure rebinding as parameter to bindTo.
  • Improved the warning message of incompatible arguments.
  • Improved ternary operator performance when returning arrays.
  • Changed error handlers to only generate docref links when the docref_root INI setting is not empty.
  • Changed silent conversion of array to string to produce a notice.
  • Changed default value of 「default_charset」 php.ini option from ISO-8859-1 to UTF-8.
  • Changed silent casting of null/」/false into an Object when adding a property into a warning.
  • Changed E_ALL to include E_STRICT.
  • Disabled windows CRT warning by default, can be enabled again using the ini directive windows_show_crt_warnings.
  • Fixed bug #55378: Binary number literal returns float number though its value is small enough.

翻譯

  • 加入短數組語法支持([1,2,3])。詳情見升級指南。
  • 加入二進制格式(0b001010)。

  • 添加支持類::{ }()表達式的語法。
  • 加入多字節默認支持。曾經的PHP必須編譯——使Zend字節。

    現在可以啓用或禁用經過zend.multibyte指令在php.ini。

  • 從EXT / mbstring編譯時依賴。
  • 添加支持的特徵。
  • 加入關閉美圓的支持。
  • 加入數組引用的支持。
  • 加入可贖回typehint。
  • 添加間接方法調用經過陣列。

    # 47160。

  • 加入DTrace支持。
  • 加入類成員訪問實例(好比(新富)-> bar())支持。

  • <?=永遠是現在可用的short_open_tag設置。
  • 實現Zend信號處理(可配置的選項——啓用Zend信號。默認關閉)。
  • 改進的輸出層,看到readme.new-output-api內部。

  • 改進的UNIX系統贊成創建建設多個PHP二進制SAPIs和SAPI模塊一樣的時間。# 53271,# 52419。

  • 實施關閉綁定參數的結合。
  • 改進的相互矛盾的警告信息。
  • 三元運算符返回時陣列性能改進。
  • 改變錯誤處理程序僅僅產生docref連接時,docref_root ini設置不空。
  • 改變數組字符串生成通知無聲的轉換。

  • 改變默認值「default_charset」的選項從ISO-8859-1爲UTF-8。

  • 改變沉默鑄造空/」/假爲對象加入屬性到一個警告。

  • 改變e_all包括e_strict。
  • 禁用Windows CRT警告默認狀況下,可以再次啓用使用INI指令windows_show_crt_warnings。

  • 固定的錯誤# 55378:二進制數的文本返回浮點數的值足夠小,儘管。

發現這麼翻譯還不如不翻譯看的明確。

。。。

short array syntax support 短數組支持

<?php $array = array( "foo" => "bar", "bar" => "foo", ); // 自 PHP 5.4 起 $array = [ "foo" => "bar", "bar" => "foo", ]; ?>

參考資料

binary numbers format 二進制直接量

從PHP5.4開始, 咱們可以直接在代碼中書寫二進制直接量了. 這個在定義一些標誌位的時候, 尤其方便.

$bin  = 0b1101;
echo $bin;

//13

參考資料

support for Class::{expr}() syntax

Makes PHP more flexible, when calling class/object methods.

$method = 'method';

$test = new Test();

$test->method();
$test->$method();
$test->{'method'}();

Test::method();
Test::$method();
Test::{'method'}();

參考資料

multibyte support 多字節支持

加入多字節默認支持。曾經的PHP必須編譯——使Zend字節。現在可以啓用或禁用經過zend.multibyte指令在php.ini。

參考資料

Removed compile time dependency from ext/mbstring

從EXT / mbstring編譯時依賴

Added support for Traits

自 PHP 5.4.0 起。PHP 實現了代碼複用的一個方法,稱爲 traits。

Traits 是一種爲相似 PHP 的單繼承語言而準備的代碼複用機制。Trait 爲了下降單繼承語言的限制。使開發者可以自由地在不一樣層次結構內獨立的類中複用方法集。Traits 和類組合的語義是定義了一種方式來下降複雜性。避免傳統多繼承和混入類(Mixin)相關的典型問題。

Trait 和一個類相似。但僅僅旨在用細粒度和一致的方式來組合功能。Trait 不能經過它自身來實例化。它爲傳統繼承添加了水平特性的組合;也就是說。應用類的成員不需要繼承

參考資料

Added closure $this support back

用於表明 匿名函數 的類.

匿名函數(在 PHP 5.3 中被引入)會產生這個類型的對象。

在過去,這個類被以爲是一個實現細節,但現在可以依賴它作一些事情。

自 PHP 5.4 起。這個類帶有一些方法,贊成在匿名函數建立後對其進行不少其它的控制。

除了此處列出的方法,另外一個 __invoke 方法。這是爲了與其它實現了 __invoke()魔術方法 的對象保持一致性,但調用匿名函數的過程與它無關。

待續。。

參考資料

Added array dereferencing support

可以說上是直接獲取數組中的元素吧,對於咱們來講仍是很是方便的。能省下一個變量。

在曾經, 咱們假設定義一個返回數組的函數:

<?php function foo() { return array(1, 2, 3); }

那麼, 假設我要獲取返回數組中的第二個元素, 就僅僅能:

<?

php list(, $mid, ) = foo(); //或者: $tmp = $foo(); $mid = $tmp[1];

而從5.4開始, 咱們就不需要這麼麻煩了, 僅僅需要:

<?php $mid = foo()[1];

另外, 也可以使用引用:

<?

php function &getTable() { return $GLOBALS; } getTable()["foo"] = "laruence"; echo $foo; //laruence

參考資料

函數類型提示(Callable typehint)

要想了解這個首先需要了解的是類型約束

PHP 5 可以使用類型約束。函數的參數可以指定必須爲對象(在函數原型裏面指定類的名字),接口。數組(PHP 5.1 起)或者 callable(PHP 5.4 起)。只是假設使用 NULL 做爲參數的默認值。那麼在調用函數的時候依舊可以使用 NULL 做爲實參。

假設一個類或接口指定了類型約束。則其所有的子類或實現也都如此。

類型約束不能用於標量類型如 int 或 string。Traits 也不一樣意

/** * 測試函數 * 第一個參數必須爲 OtherClass 類的一個對象 */
    public function test(OtherClass $otherclass) {
        echo $otherclass->var;
    }

當中的OtherClass 就是咱們的類型約束

在PHP5.4版本號中。新增了Callable類型的類型約束

<?

php function foo(callable $callback) { }
<?php
foo("false"); //Catchable fatal error: Argument 1 passed to foo() must be callable *
foo("printf"); //okey
foo(function(){}); //okey

class A {
    static function show() {
    }
}

foo(array("A", "show")); //okey

參考資料

indirect method call through array 經過間接方法調用的數組

這裏在後面另外一個#47160的bug.

<?

php // For 5.2.x as well. class Thing { static function DoesStuff() { echo 'Hello, World'; } } $f = array('Thing', 'DoesStuff'); $f(); //返回 Hello, World ?

>

依照bug頁面上的,以前的版本號就會返回錯誤,現在已經好啦~

<?php


class Hello {
    //這是一個靜態的方法
   static public function world($x) {
     echo "Hello, $x\n";
   }
}


function hello_world($x) {
   echo "Hello, $x\n";
}

 //數組中包括了三個。第一個數組。第二個匿名函數,第三個字符串
$callbacks = array(
   array('Hello', 'world'),
   function ($x) { echo "Hello, $x\n"; },
   'hello_world'
);

 //循環了數組
foreach ($callbacks as $k => $callback) {
   if (is_callable($callback)) { //檢測參數是否爲合法的可調用結構
     $callback($k);  //而後就把本身的key值做爲參數傳遞過去了 
   }
}


//RESULT:
//Hello, 0 指向了Hello的world靜態方法
//Hello, 1 參數自己就是匿名函數,是可以直接運行的
//Hello, 2 做爲字符串的參數可以找到一樣名字的方法,因此運行了


//CalvinLee
?>

上面的第一個栗子說明了咱們可以經過數組的形式直接調用方法。確認回調函數,經過array('類','方法')的方式進行直接調用。

這是一個因爲bug形成的新特性。

參考資料

DTrace 支持

DTrace(全稱Dynamic Tracing),也稱爲動態跟蹤。是由 Sun™ 開發的一個用來在生產和試驗性生產系統上找出系統瓶頸的工具,可以對內核(kernel)和用戶應用程序(user application)進行動態跟蹤並且對系統運行不構成不論什麼危急的技術。

在不論什麼狀況下它都不是一個調試工具。 而是一個實時系統分析尋找出性能及其它問題的工具。

也就是這個調試工具可以直接支持PHP辣!可以進行更深層次的代碼調試。

有時間可以研究一下這個怎麼用。

。。

參考資料

在實例化類成員的訪問支持

class Test {
    public function foo() {
        return $this;
    }

    public function bar() {
        return 'oh hai';
    }
}

$t = (new Test)->foo();

print $t->bar();

咱們可以直接調用啦啦啦~

很是方便的樣子。

參考資料

<?= 短標籤

PHP5.4裏默認開啓了短標籤設置。支持了行內的短標籤 <?= ?>

<?php
$a = 2;
?>
<?=$a?>

這個短標籤直接輸出了,因此是用於行內的。

參考資料

Zend Signal Handling

實現Zend Signal Handling(可配置的選項——–enable-zend-signals,默認關閉)

新的機制, 叫作zend signal, 它的理念, 來自Yahoo的」延遲信號處理」(Yahoo signal deferring mechanism), 然後, facebook把這套理念加入了PHP中, 爲了提高PHP+Apache 1.X下PHP調用ap_block/ap_unblock的性能

參考資料

Improved output layer, see README.NEW-OUTPUT-API for internals

改進的輸出層,看到readme.new-output-api內部

看起來像是內核的輸出層改動。但是實在是找不到資料,不知道怎麼理解這一條。QAQ

multiple PHP binary SAPIs and one SAPI module 多個PHP二進制SAPIs和SAPI模塊

改進的UNIX系統贊成創建建設多個PHP二進制SAPIs和SAPI模塊一樣的時間。#53271, #52419.

這裏在後面提到了兩個bug。

Using configure options –enable-cgi and –enable-fpm together will not produce the php-cgi binary.

兩個配置一塊兒的時候就不會產生php-cgi的二進制。
兩個模塊做爲配置項的時候會編譯失敗。

參考資料

Implemented closure rebinding as parameter to bindTo 實施關閉又一次綁定的參數結合

Closure::bind — 複製一個閉包,綁定指定的$this對象和類做用域。
Closures: Object extension 關閉對象擴展

這裏需要理解一個Closure的概念。Closure 類,匿名函數類。

匿名函數(在 PHP 5.3 中被引入)會產生這個類型的對象。在過去。這個類被以爲是一個實現細節,但現在可以依賴它作一些事情。自 PHP 5.4 起。這個類帶有一些方法。贊成在匿名函數建立後對其進行不少其它的控制

<?php class APP { public $var = 25; public function __construct() { } public function get($callback) { if (!is_callable($callback)) { throw new InvalidArgumentException('Paran must be callable.'); } // $callback->bindTo($this); // $callback->bindTo($this, $this); // $callback(); //上面的回調方法找不到綁定的對象。如下的方法是用一個新的變量來作綁定函數的結果。而後運行 $callback1 = $callback->bindTo($this, $this); $callback1(); } } $app = new APP(); $app->get(function() use ($app) {//做爲本身的匿名函數 echo '<pre>'; var_dump($app); echo '<br />'; var_dump($this); }); ?

>

參考資料

Improved the warning message of incompatible arguments 改進的不兼容的參數的警告信息

就是字面上的意思。。。

Improved ternary operator performance when returning arrays 三元運算符返回時數組性能改進

優化了數組的時候的性能,當返回值是array的時候速度獲得了提高。

參考資料
- http://www.laruence.com/2011/11/04/2258.html
- http://grokbase.com/t/php/php-internals/11aeyhp2ek/ternary-operator-performance-improvements
- http://php.net/manual/en/language.operators.comparison.php

Changed error handlers 改變錯誤處理程序僅僅產生docref連接時,docref_root ini設置不空

當配置文件 php.ini 中的 docref_root 的值爲空的時候。更改了 docref links 指向的連接。

也就是對默認的指向的錯誤提醒的頁面鏈接進行了改動.

改動默認值不屬於很是重要的功能,對於這種更新對項目來講不是特別的重要。

新的錯誤信息格式包括了相應的參考頁面。該頁面對錯誤進行具體描寫敘述,或者描寫敘述了致使該發生錯誤的函數。爲了提供手冊的頁面。你可以在PHP官方站點下載相應語言的手冊,並在ini中設置網址到本地相應的地址。假設你的本地手冊拷貝可以使用」/manual/」 訪問,你就可以簡單的設置 docref_root=/manual/。另外你還需要設置 docref_ext 匹配你本地文件的後綴名 docref_ext=.html。固然也可以設置一個外部的參考地址。

好比你可以設置 docref_root=http://manual/en/ 或者 docref_root=」http://landonize.it/?how=url&theme=classic&filter=Landon &url=http%3A%2F%2Fwww.php.net%2F」

一般需要在 docref_root 後面以 「/」結尾, 但是在以上的另一種演示樣例狀況中沒必要這麼設置。

Note:

因爲這麼作可以高速定位和查看到函數的說明,因此它對你的開發會很是實用。

建議永遠不要再生產系統中使用 (好比系統被鏈接到互聯網對外提供服務)。

參考資料

Changed silent conversion of array to string to produce a notice 改變了數組轉換字符串的提醒

木有看明確。

。。。

參考資料

Changed default value of 「default_charset」 php.ini option from ISO-8859-1 to UTF-8 改變默認值「default_charset」的選項從ISO-8859-1爲UTF-8

默認設置是UTF-8.

PHP always outputs a character encoding by default in the Content-type: header. To disable sending of the charset, simply set it to be empty.

有趣的是此次發現了國內的project師的提交的bug~

參考資料

Changed silent casting of null/」/false into an Object when adding a property into a warning 當一個對象中有空的屬性時加入了一個警告

當給一個對象加入一個屬性的時候,扔掉null或者false會返回一個警告

Changed E_ALL to include E_STRICT E_ALL中包括了E_STRICT

參考資料

Disabled windows CRT warning by default, can be enabled again using the ini directive windows_show_crt_warnings 禁用Windows CRT警告默認狀況下,可以再次啓用使用INI指令windows_show_crt_warnings

windows CRT

Visual Studio 2012 更新 1 支持的 Windows 8,Windows Server 2012,Windows 7,Windows Server 2008中,Windows Vista,Windows XP Service Pack 3 (SP3) C 運行庫,x86 的 Windows XP Service Pack 2 (SP2) x64 和 Windows Server 2003 Service Pack 2 (SP2) x86 和 x64 的。 所有這些操做系統支持 Windows 應用程序編程接口 (API) (API) 提供和 Unicode 支持。 此外,所有 Win32 應用程序中使用多字節字符集 (MBCS)。

This directive shows the Windows CRT warnings when enabled. These warnings were displayed by default until PHP 5.4.0.

This directive shows the Windows CRT warnings when enabled. These warnings were displayed by default until PHP 5.4.0.

參考資料

Fixed bug #55378: Binary number literal returns float number though its value is small enough 固定的錯誤# 55378:二進制數的文本返回浮點數儘管其值足夠小

上面提到過這個版本號支持了直接的二進制的輸出。因此這條就是修復返回二進制轉換的浮點數的錯誤。

Test script: --------------- <?

php var_dump(0b1111111); var_dump(0b1111111111111111); Expected result: ---------------- int(127) int(65535) Actual result: -------------- int(127) float(65535)

參考資料

Improved Zend Engine memory usage 改進的內存使用Zend引擎

原文

  • Improved parse error messages.
  • Replaced zend_function.pass_rest_by_reference by ZEND_ACC_PASS_REST_BY_REFERENCE in zend_function.fn_flags.
  • Replaced zend_function.return_reference by ZEND_ACC_RETURN_REFERENCE in zend_function.fn_flags.
  • Removed zend_arg_info.required_num_args as it was only needed for internal functions. Now the first arg_info for internal functions (which has special meaning) is represented by zend_internal_function_info structure.
  • Moved zend_op_array.size, size_var, size_literal, current_brk_cont, backpatch_count into CG(context) as they are used only during compilation.
  • Moved zend_op_array.start_op into EG(start_op) as it’s used only for ‘interactive’ execution of single top-level op-array.
  • Replaced zend_op_array.done_pass_two by ZEND_ACC_DONE_PASS_TWO in zend_op_array.fn_flags.
    op_array.vars array is trimmed (reallocated) during pass_two.
  • Replaced zend_class_entry.constants_updated by ZEND_ACC_CONSTANTS_UPDATED in zend_class_entry.ce_flags.
  • Reduced the size of zend_class_entry by sharing the same memory space by different information for internal and user classes. See zend_class_entry.info union.
  • Reduced size of temp_variable.

翻譯

  • 改進的解析錯誤消息。

  • 經過更換zend_function.pass_rest_by_reference zend_acc_pass_rest_by_reference在zend_function.fn_flags。

  • 經過更換zend_function.return_reference zend_acc_return_reference在zend_function.fn_flags。

  • 刪除zend_arg_info.required_num_args因爲這僅僅是內部功能的需要。現在內部功能的第一arg_info(具備特殊意義的zend_internal_function_info結構表示)。

  • 移動zend_op_array.size,size_var,size_literal,current_brk_cont,backpatch_count爲CG(上下文)做爲他們在編譯過程當中僅僅使用。

  • 移動zend_op_array.start_op成如(start_op)它僅僅用於「單頂級運算陣列交互運行。

  • 經過更換zend_op_array.done_pass_two zend_acc_done_pass_two在zend_op_array.fn_flags。

  • op_array.vars陣列在pass_two修剪(又一次分配)。

  • 經過更換zend_class_entry.constants_updated zend_acc_constants_updated在zend_class_entry.ce_flags。

  • 下降zend_class_entry大小由內部和用戶類不一樣信息共享一樣的內存空間。看到zend_class_entry.info聯盟。

  • temp_variable縮小。

這部分的說明是關於zend引擎相關的,按眼下個人水平還不是能很是明確的理解這些的含義。

Improved Zend Engine, performance tweaks and optimizations 改進的Zend引擎,性能調整和優化

原文

  • Inlined most probable code-paths for arithmetic operations directly into executor.
  • Eliminated unnecessary iterations during request startup/shutdown.
  • Changed $GLOBALS into a JIT autoglobal, so it’s initialized only if used. (this may affect opcode caches!)
  • Improved performance of @ (silence) operator.
  • Simplified string offset reading. $str[1][0] is now a legal construct.
  • Added caches to eliminate repeatable run-time bindings of functions, classes, constants, methods and properties.
  • Added concept of interned strings. All strings constants known at compile time are allocated in a single copy and never changed.
  • ZEND_RECV now always has IS_CV as its result.
  • ZEND_CATCH has to be used only with constant class names.
  • ZEND_FETCH_DIM_? may fetch array and dimension operands in different order.
  • Simplified ZEND_FETCH_*_Roperations. They can’t be used with the EXT_TYPE_UNUSEDflag any more. This is a very rare and useless case. ZEND_FREE might be required after them instead.
  • Split ZEND_RETURN into two new instructions ZEND_RETURN and ZEND_RETURN_BY_REF.
  • Optimized access to global constants using values with pre-calculated hash_values from the literals table.
  • Optimized access to static properties using executor specialization. A constant class name may be used as a direct operand of ZEND_FETCH_* instruction without previous ZEND_FETCH_CLASS.
  • zend_stack and zend_ptr_stack allocation is delayed until actual usage.

翻譯

  • 內聯最可能的代碼路徑,直接進入運行算術運算。

  • 消除沒必要要的迭代請求啓動/關機時。

  • 改變成一個JIT autoglobal =美圓。因此它的初始化,假設使用。

    (這可能會影響操做碼緩存!

  • 改進的性能」(沉默)算子。

  • 簡化的字符串偏移閱讀。

    $str [ 1 ] [ 0 ]現在的法律構建。

  • 消除反覆的運行時綁定的功能,加入緩存類,常量。方法和屬性。

  • 拘留字符串加入的概念。所有字符串常量在編譯時被分配在一個單拷貝,永遠都不會改變的。

  • zend_recv現在老是is_cv做爲結果。

  • zend_catch現在僅僅需要進行不斷的類名稱。

  • zend_fetch_dim_?可以把不一樣排列和尺寸數。

  • 簡化zend_fetch_ * _r操做。他們不能用不論什麼ext_type_unused旗。這是一個很是可貴的和沒用的狀況下。- zend_free可能在他們的要求。

  • zend_return分裂爲兩個新的指令zend_return和zend_return_by_ref。

  • 優化訪問全局常量使用的值與預先計算的hash_values從文字表。

  • 優化訪問靜態屬性用遺囑運行人專業化。一個恆定的類的名稱可以做爲直接操做數指令沒有曾經的zend_fetch_class zend_fetch_ *。

  • zend_stack和zend_ptr_stack分配延遲到實際使用。

  • 改進的Zend引擎。性能調整和優化

機翻好渣。。。。。

等我長髮及腰,再來看這個可好QAQ

Other improvements to Zend Engine 在Zend引擎改進

原文

  • Added an optimization which saves memory and emalloc/efree calls for empty HashTables.
  • Added ability to reset user opcode handlers.
  • Changed the structure of op_array.opcodes. The constant values are moved from opcode operands into a separate literal table.
  • Fixed (disabled) inline-caching for ZEND_OVERLOADED_FUNCTION methods.
  • Fixed bug #43200 (Interface implementation / inheritence not possible in abstract classes).

    翻譯

  • 添加了一個優化。節省內存和emalloc /飽和需要空表。

  • 新增能力重置用戶操做處理程序。

  • 改變了op_array.opcodes結構。

    該常數的值是從操做碼操做數爲一個單獨的文字表。

  • 固定(禁用)爲zend_overloaded_function方法內聯緩存。

  • 固定的錯誤# 43200(接口的實現/繼承抽象類不可能)。

PHP結構

zend引擎做爲底層。仍是需要我理解更深刻再去看啦~

後記

關於PHP

PHP做爲流行的腳本語言,上手很是快,但是這並不表明這個一個糟糕的語言,從這個版本號的更新記錄。我也看到了每次的改進。以及社區內你們的努力。

此次作ChangeLog的整理大概會寫三個文章共六篇,因爲這個Log實在是太長了仍是寫一半先發出去比較好~

引用的資料在每個小結後面都有。方便本身和你們查閱。

假設發現描寫敘述錯誤。請務必評論或者私信我,假設有錯,發現了就不能再錯下去~

關於整理資料

咱們依靠網絡。天天在接觸着很是多的新聞和資料。對咱們來說,從這些裏面找出實用的知識並吸取仍是有必定難度的,特別是國內糟糕的博客環境。一個文章公佈出來以後會有好多站點抄襲抓取。內容還不全。對於剛開始學習的人會形成負面影響,且珍惜。

關於我的成長

當有一個大目標的時候,才幹夠轉化成小目標進行運行。 運行力永遠放在第一位。

相關文章
相關標籤/搜索