在 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
函數(shù)原 salt 量不再需要由開發(fā)者提供了。函數(shù)內(nèi)部默認帶有 salt 能力,無需開發(fā)者提供 salt 值。
更多建議: