Bigcommerce:PHP版本升级错误解决办法
报错内容一:Strict Standards: Declaration of....should be compatible with .....
Strict Standards: Declaration of ISC_CHECKOUT_PROVIDER::GetPropertiesSheet() should be compatible with ISC_MODULE::GetPropertiesSheet($tab_id, $idGlobal, $jsGlobal, $jsSelectedFunction, $customVars = Array, $moduleId = NULL) in /home/ipcamera/public_html/includes/classes/class.checkoutprovider.php on line892
报错的意思:子类重写的父类的函数,子类函数里面的参数与父类的参数不对应
查看文件class.checkoutprovider.php报错的892行,GetPropertiesSheet()函数如下:
public function GetPropertiesSheet($tabId, $doHeaderRows=true, $moduleId=''){
.....
}
解决方法:把GetPropertiesSheet()函数的参数改为父类中的参数,其实直接Copy报错提示的信息就可以啦~
更改后:
public function GetPropertiesSheet($tabId, $idGlobal, $jsGlobal, $jsSelectedFunction, $customVars = Array(), $moduleId = NULL)
{
.....
}
报错内容二:Strict Standards: Non-static method....should not be called statically in .....
Strict Standards: Non-static method ISC_REDIRECTS::generateRedirectUrl() should not be called statically in/home/ipcamera/public_html/lib/class.redirects.php on line30
报错的意思:generateRedirectUrl()函数是非静态声明,他不可以被静态(static)声明的方法调用
查看文件class.redirects.php报错的30行,GetPropertiesSheet()函数如下:
publicstatic function checkRedirect($urlPath)
{
// @codeCoverageIgnoreStart
$newUrl = self::generateRedirectUrl($urlPath);
.....
}
public function generateRedirectUrl($urlPath)
{
.....
}
解决方法:把generateRedirectUrl()函数改为静态声明
更改后:
public static function generateRedirectUrl($urlPath){
.....
}
报错内容三:Strict Standards: mktime(): You should be using the time() function instead in.....
Strict Standards: mktime(): You should be using the time() function instead in/home/ipcamera/public_html/lib/general.php on line3590
报错的意思:mktime()方法不带参数被调用时,会被抛出一个报错提示
查看文件general.php报错的3590行,如下:
$args = func_get_args();$result = call_user_func_array("mktime", $args);
解决方法:mktime()方法改为time()方法
更改后:
$args = func_get_args();$result = call_user_func_array("time", $args);
- 02-25谷歌推行Tango 3D智能视效手机开发项目
- 12-22php $_server应用
- 12-22PHP 解决一次因压缩代码引发的死循环
- 12-22php jquery 多文件上传
- 12-22该如何使用thinkphp分表呢?
- 12-22thinkPHP模板的输出和模型的使用
- 01-11全球最受赞誉公司揭晓:苹果连续九年第一
- 12-09罗伯特·莫里斯:让黑客真正变黑
- 12-09谁闯入了中国网络?揭秘美国绝密黑客小组TA
- 12-09警示:iOS6 惊现“闪退”BUG
- 12-05亚马逊推出新一代基础模型 任意模态生成大模
- 12-05OpenAI拓展欧洲业务 将在苏黎世设立办公室
- 12-05微软质疑美国联邦贸易委员会泄露信息 督促其
- 12-05联交所取消宝宝树上市地位 宝宝树:不会对公
- 12-04企业微信致歉:文档打开异常已完成修复