我得到了amfphp的错误

时间:2017-10-29 13:25:10

标签: php amfphp

我该如何解决这个问题? 错误是:致命错误:在第134行的/.../amfphp/core/amf/app/Gateway.php中不在对象上下文中时使用$ this

public static function service() {

        //Set the parameters for the charset handler
        CharsetHandler::setMethod($this->_charsetMethod); // the problem points 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('?');

        $GLOBALS['amfphp']['actions'] = $this->actions;

1 个答案:

答案 0 :(得分:0)

您不能在$this方法中使用static变量,因为类实例不存在。静态方法对类的实例一无所知,您可以将这些方法视为class methods,而不是instance methods。您似乎需要删除此功能的static修饰符。请查看docs以获取进一步说明。