严格标准:childClass::customMethod()的声明应与parentClass::customMethod()的声明兼容

PHP中此错误的可能原因是什么?在哪里可以找到有关意味着兼容的信息?

最佳答案

childClass::customMethod()parentClass::customMethod()具有不同的参数或不同的访问级别(公共(public)/私有(private)/ protected )。

09-26 23:46