发表时间:2014-09-05来源:网络
报错内容一: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();解决方法:mktime()方法改为time()方法
更改后:
$args = func_get_args();下一篇:php关于正则表达式的事
CI框架连接数据库配置操作以及多数据库操作
asp 简单读取数据表并列出来 ASP如何快速从数据库读取大量数据
C语言关键字及其解释介绍 C语言32个关键字详解
C语言中sizeof是什么意思 c语言里sizeof怎样用法详解
PHP中的魔术方法 :__construct, __destruct , __call, __callStatic,__get, __set, __isset, __unset , __sleep,
将视频设置为Android手机开机动画的教程
PHP中的(++i)前缀自增 和 (i++)后缀自增
最简单的asp登陆界面代码 asp登陆界面源代码详细介绍
常用dos命令及语法
PHP中include和require区别之我见
康养洪雅客户端下载v4.7.4 安卓最新版
57.33MB |资讯阅读
掌中聊城手机客户端(更名新聊城)下载v8.0.2 安卓官方版
39.84MB |资讯阅读
书香金溪客户端下载v3.1.2 安卓版
77.76MB |资讯阅读
靖安发布新闻客户端下载v3.1.2 安卓最新版
77.69M |资讯阅读
115管理app下载v36.0.3 安卓版
76.82MB |商务办公
任城融媒体中心下载v2.0.19 安卓官方版
97.83M |资讯阅读
亨特物流港最新版下载v3.1.4 安卓版
17.55MB |生活服务
建筑工匠客户端下载v7.6.3 安卓版
82.32MB |学习教育
2014-09-05
2022-03-20
2022-03-21
2022-03-24
2014-09-05
2014-09-05
2015-07-05
2014-09-05
2022-03-21
2014-09-05