我在PHP脚本中显示了以下错误。

Strict Standards: Declaration of Response::toXML() should
be compatible with Element::toXML($header = false) in line 35

有问题的行是require_once ('./plivo.php');; plivo.com PHP帮助程序的导入。

谁能告诉我这个错误是什么以及如何解决?

谢谢

最佳答案

您可能已经发现了这一点,但是如果您实际上是想纠正错误而不是更改错误报告的级别,则需要更改以下内容:

// In the plivo.php helper file we're looking at
// the Response class that extends the Element class
// Change the following function from:
public function toXML() {
    $xml = parent::toXML($header=TRUE);
    return $xml;
}

// To:
public function toXML($header=TRUE) {
    $xml = parent::toXML($header);
    return $xml;
}

问题是childClass::method()与notJim's answer here中概述的parentClass::method()具有不同的参数。希望对您有所帮助。

10-07 17:48