Bigcommerce:PHP版本升级错误解决办法_PHP教程

php中文网
发布: 2016-07-13 17:18:46
原创
1010人浏览过

报错内容一: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=''){

.....

}

DeepBrain
DeepBrain

AI视频生成工具,ChatGPT +生成式视频AI =你可以制作伟大的视频!

DeepBrain 108
查看详情 DeepBrain

立即学习PHP免费学习笔记(深入)”;

解决方法:把GetPropertiesSheet()函数的参数改为父类中的参数,其实直接Copy报错提示的信息就可以啦~

更改后:

public function GetPropertiesSheet($tabId, $idGlobal, $jsGlobal, $jsSelectedFunction, $customVars = Array(), $moduleId = NULL)
{

.....

}

立即学习PHP免费学习笔记(深入)”;


报错内容二: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);

.....

}

立即学习PHP免费学习笔记(深入)”;

public function generateRedirectUrl($urlPath)
{

.....

}

立即学习PHP免费学习笔记(深入)”;

解决方法:把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);





www.bkjia.comtruehttp://www.bkjia.com/PHPjc/621622.htmlTechArticle报错内容一: Strict Standards : Declaration of....should be compatible with ..... Strict Standards : Declaration of ISC_CHECKOUT_PROVIDER::GetPropertiesSheet() should be comp...
PHP速学教程(入门到精通)
PHP速学教程(入门到精通)

PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号