Strict Standards: Non-static method ... 错误的解决办法
错误提示:
Strict Standards: Non-static method xxx() should not be called statically
原因
使用了self
的静态方式调用了方法,但方法没有定义静态static
解决办法:
修改被调用方法为公共静态方法
,即:
public static function xxx(){...}
- 上一篇: 禁止php执行linux系统命令
- 下一篇: jsonp使用笔记