2013-10-13 47 views
2

我有以下錯誤顯示在PHP腳本中。嚴格的標準:響應聲明:: toXML()錯誤

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

該問題行是require_once ('./plivo.php');;導入plivo.com PHP幫助程序。

任何人都可以告訴我這個錯誤是什麼以及我可以如何解決它?

感謝

回答

8

您可能已經想通了這一點,但如果你真的想修復錯誤而不是改變錯誤的級別報告,你需要改變如下:

// 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()與0123C中概述的parentClass :: method()有不同的參數。希望這有幫助。

相關問題