Home  >  Article  >  Backend Development  >  在最新wampserver上运行spaweditor总出错,是否只能通过php降级解决?

在最新wampserver上运行spaweditor总出错,是否只能通过php降级解决?

WBOY
WBOYOriginal
2016-06-23 14:04:36976browse


已将php.ini中参数进行了修订:error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
ftp到在其它第三方提供的web host 运行一切正常,可是在本地的wampserver依然是是如图的结果,求指点!谢

是不是只能将wampserver降级的2.1 (php5.3)才能解决


回复讨论(解决方案)

你可按错误提示修改程序
比如他说 SpawConfig::setStaticConfigItem 不是静态方法
那你就找到 SpawConfig 类定义中的 function setStaticConfigItem 在前面加上 static 声明

太好了,能举个例子就更好了,

class T {  function foo() {    echo 'abcd';  }}class T1 {  static function foo() {    echo 'abcd';  }}T::foo(); //这要报错 Strict Standards: Non-static method T::foo() should not be called statically in T1::foo(); //这个就不报错

晓得了。
spaweditor 2008年后就没再升级,我自己试着改一改,有问题再请教。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn