求助:关于继承错误的问题
php版本5.4.12
PHP Strict Standards: Declaration of db_attach::needBy() should be compatible with spModel::needBy($id, $value) in C:\php\web\db\db_attach.php on line 25
重写的时候参数不一致,看了网上的方法
1.给重写的函数参数初始化
2.设置error_reporting为error_reporting(E_ALL & ~(E_STRICT | E_NOTICE))(我是在php.ini添加的)
总是无法屏蔽这个错误。请问有什么办法吗?谢谢
class c { function test( $a ) { return 1; } } <br /> class cc extends c { function test() { return null; } } <br /> $cc = new cc();Strict Standards: Declaration of cc::test() should be compatible with c::test($a) in ...