7.0.x 版本開始停用的特性

2018-02-24 15:48 更新

7.0.x 版本開始停用的特性

PHP4 風格的構造函數(shù)

在 PHP4 中類中的函數(shù)可以與類名同名,這一特性在 PHP7 中被廢棄,同時會發(fā)出一個 E_DEPRECATED 錯誤。當方法名與類名相同,且類不在命名空間中,同時PHP5的構造函數(shù)(__construct)不存在時,會產(chǎn)生一個 E_DEPRECATED 錯誤。

<?php
class foo {
    function foo() {
        echo 'I am the constructor';
    }
}
?>

上述代碼輸出:

Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; foo has a deprecated constructor in example.php on line 3

password_hash() 隨機因子選項

函數(shù)原 salt 量不再需要由開發(fā)者提供了。函數(shù)內(nèi)部默認帶有 salt 能力,無需開發(fā)者提供 salt 值。

以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號