Heim >Backend-Entwicklung >PHP-Tutorial >在最新wampserver上运行spaweditor总出错,是否只能通过php降级解决?

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

WBOY
WBOYOriginal
2016-06-23 14:04:36987Durchsuche


已将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年后就没再升级,我自己试着改一改,有问题再请教。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn