Strict Standards: Non-static method ... 错误的解决办法
错误提示:
Strict Standards: Non-static method xxx() should not be called statically原因
使用了self的静态方式调用了方法,但方法没有定义静态static
解决办法:
修改被调用方法为公共静态方法,即:
public static function xxx(){...} Strict Standards: Non-static method xxx() should not be called statically使用了self的静态方式调用了方法,但方法没有定义静态static
修改被调用方法为公共静态方法,即:
public static function xxx(){...}