PHP7 廢棄特性

PHP4 風格的構造函數

在 PHP4 中類中的函數能夠與類名同名,這一特性在 PHP7 中被廢棄,同時會發出一個 E_DEPRECATED 錯誤。當方法名與類名相同,且類不在命名空間中,同時PHP5的構造函數(__construct)不存在時,會產生一個 E_DEPRECATED 錯誤。php

例如:函數

<?phpspa

class A {
   function A() {
      print('Style Constructor');
   }
}
?>

以上程序執行輸出結果爲:code

Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; A has a deprecated constructor in...

以靜態的方式調用非靜態方法

以靜態的方式調用非靜態方法,再也不支持:it

例如:io

<?php
class A {
   function b() {
      print('Non-static call');
   }
}
A::b();
?>
 

以上程序執行輸出結果爲:function

Deprecated: Non-static method A::b() should not be called statically in... Non-static call
相關文章
相關標籤/搜索