我正在运行 Ubuntu + PHP 5.4 并得到这样的错误:
严格标准:不应静态调用非静态方法 XTemplate::I(),假设 $this 来自第 339 行 ...
该方法如下所示:
interface ITemplate
{
public function I();
}
class XTemplate implements ITemplate
{
public function I()
{
...
}
}
并且此代码在 XAMPP 中的 Windows 7 上正常运行。我只找到了关闭 error_reporing 的建议,但我需要解决它。我是否需要安装一些模块才能打开 php.ini 中的一些其他设置?