私のサイトにはフラッシュが1ページありますが、問題があります。 私はdircetlyファイルsite.com/amfphp/gateway.phpを実行しようとすると、私はこのエラーを取得:amfphpファイルを実行するとエラーが発生します
Fatal error: Uncaught exception 'VerboseException' with message 'Non-static method CharsetHandler::setMethod() should not be called statically, assuming $this from incompatible context' in ....
function service() {
//Set the parameters for the charset handler
CharsetHandler::setMethod($this->_charsetMethod); // the problem point here
CharsetHandler::setPhpCharset($this->_charsetPhp);
CharsetHandler::setSqlCharset($this->_charsetSql);
//Attempt to call charset handler to catch any uninstalled extensions
$ch = new CharsetHandler('flashtophp');
$ch->transliterate('?');
$ch2 = new CharsetHandler('sqltophp');
$ch2->transliterate('?');
私はこれをどのように修正することができますか?
代わりに各オブジェクトのメソッドを呼び出すことを試みることがありますか? '$ ch-> setMethod($ this - > _ charsetMethod);' –
私はそれを呼び出すでしょうが、どのパラメータを置くべきですか? '$ ch = new ChasetHandler( 'HERE');' –