严格标准:不应静态调用非静态方法STemplate::assign()


Strict Standards: Non-static method STemplate::assign() should not be called statically

i将我的旧xampp(1.7.3)localhost服务器升级到1.8.0。现在,在我的所有页面中,智能模板引擎(2.6.6)都无法工作,我看到Strict Standards错误。什么问题?如何解决这个问题?

NOTE : This Wroked Fine In Old Xampp(1.7.3).

错误部分:

Strict Standards: Non-static method STemplate::assign() should not be called statically in C:'xampp'htdocs'tube'include'config.php on line 88
Strict Standards: Non-static method STemplate::create() should not be called statically in C:'xampp'htdocs'tube'libraries'mysmarty.class.php on line 42
Strict Standards: Non-static method STemplate::setCompileDir() should not be called statically in C:'xampp'htdocs'tube'include'config.php on line 181
Strict Standards: Non-static method STemplate::setTplDir() should not be called statically in C:'xampp'htdocs'tube'include'config.php on line 182

我的配置行错误:

STemplate::assign($field, $config[$field]); // line 88
STemplate::setCompileDir($config['basedir']."/temporary"); // line 181
STemplate::setTplDir($config['basedir']."/themes"); // line 182

my.Smarty.class.php(错误行2)

function assign($var, $value) {
        global $Smarty;
        if (!isset($Smarty)) {
            STemplate::create(); // <---- line 42
        }
        $Smarty->assign($var, $value);
    }

感谢您的帮助:)

这是因为您使用的是带有strict standards的现代版本的PHP。您可以通过声明使代码工作:

public static function assign($var, $value)

然而,从其他错误来看,你会遇到很多问题。您可以尝试禁用严格的标准,但最好升级到Smarty的现代版本。