PHP class和Methods相同的錯誤訊息
<b>Deprecated</b>: Methods with the same name as their class
will not be constructors in a future version of PHP
最近在寫程式出現了上述的這個訊息,原因為類別下的Methods名稱相同,php7開始Methods名稱和類別相同就會出現這項錯誤,但不影響程式執行,將名稱修改後就能恢復正常。
例:
class test{
public function test(){
xxx
}
}
留言
張貼留言