PHP – 使用不同数量的参数覆盖函数

前端之家收集整理的这篇文章主要介绍了PHP – 使用不同数量的参数覆盖函数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在扩展一个类,但在某些情况下我会覆盖一个方法.有时在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) );

我收到PHP错误/警告/信息:

我怎样才能防止这样的错误

您可以轻松地重新定义方法添加新参数,只需要新参数是可选的(在您的签名中具有默认值).见下文:
class 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

原文链接:https://www.f2er.com/php/137731.html

猜你在找的PHP相关文章