我正在扩展一个类,但在某些情况下我会覆盖一个方法.有时在2个参数中,有时在3个,有时没有参数.
不幸的是我收到了PHP警告.
我的最小可验证示例:
http://pastebin.com/6MqUX9Ui
<?PHP class first { public function something($param1) { return 'first-'.$param1; } } class second extends first { public function something($param1,$param2) { return 'second params=('.$param1.','.$param2.')'; } } // Strict standards: Declaration of second::something() should be compatible with that of first::something() in /home/szymon/webs/wildcard/www/source/public/override.PHP on line 13 $myClass = new Second(); var_dump( $myClass->something(123,456) );
我怎样才能防止这样的错误?
您可以轻松地重新定义方法添加新参数,只需要新参数是可选的(在您的签名中具有默认值).见下文:
原文链接:https://www.f2er.com/php/137731.htmlclass Parent { protected function test($var1) { echo($var1); } } class Child extends Parent { protected function test($var1,$var2 = null) { echo($var1); echo($var1); } }
有关更多详细信息,请查看链接:http://php.net/manual/en/language.oop5.abstract.php