Bigcommerce:PHP版本升级错误解决办法
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 line 3590
报错的意思: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);
下一篇: PHP控制语句之循环_PHP教程
推荐阅读
-
联想笔记本升级SP1黑屏错误解决办法
-
PHP错误Cannot use object of type stdClass as array in错误的解决办法
-
安装Win10 Mobile预览版14977版本出现错误8007007B的解决办法
-
Ubuntu18.04直接安装python3.7或者升级自带的python3.6版本之后导致终端无法打开的解决办法
-
如何把php5.3版本升级到php5.4或者php5.5
-
在wamp集成环境下升级php版本(实现方法)
-
PHPNow升级PHP版本为5.3.5的方法
-
无法在发生错误时创建会话,请检查 PHP 或网站服务器日志,并正确配置 PHP 安装最快的解决办法
-
Win10 Mobile预览版14955升级更新错误代码80242006的解决办法
-
PHP Curl出现403错误的解决办法