热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

phpdeclarationof,PHP方法重写,参数不同,报错:Declaration

前言php方法重写,参数不同,报错:Declarationofshouldbecompatiblewiththat本人laravel报错提

前言

php 方法重写,参数不同,报错: Declaration of should be compatible with that

本人laravel报错提示

01c6ab485b6cae96736784f4bd626673.png

这里是

ErrorException: Declaration of Module\Article\Controller\Mobile\ListController::tagsVideo($type, $tagsStr) should be compatible with Module\Article\Controller\Web\ListController::tagsVideo($type, $tagsStr, $page = NULL)

因为我这里是继承的关系,这是手机端的控制器继承PC控制器。

fbb910aba3b8885d38b7df351292a659.png

这边 一个方法 tagsVideo() 是被重写的方法,但是一直报错,查询了一下,原来是 php 继承 重写 函数,则参数不一致问题。

// MOBILE

/**

* 视频标签内容页 function

*

* @param [str] $type

* @param [str] $tagsStr

* @param [int] $page

* @return void

* @author bobo

* @date 2019-12-18

*/

public function tagsVideo($type, $tagsStr,$page=null)

{

$tags = $this->parseTags($tagsStr);

$count = 10;

// 加上 $page

// 读取缓存版

$articles = $this->paging($this->relationsCache('tagsVideo',$tags, $count*10, Article::CATEGORY_VIDEO), $count, $page);

// $articles = $this->paging($this->relations($tags, $count*10, Article::CATEGORY_VIDEO), $count, $page);

// select * from a where id = 5 limit

$urlPattern = $this->linkFactory->videoTag($type, $tags);

return $this->render("articles", $urlPattern, [

"tagName" => $tagsStr,

"articles" => $articles,

"matchType" => $type,

"tdk" => [

"topic" => $this->findTdkTags($tagsStr),

]

]);

}

//PC

public function tagsVideo($type, $tagsStr,$page=null)

{

$tags = $this->parseTags($tagsStr);

$count = 10;

// 加上 $page

$articles = $this->paging($this->relations($tags, $count*10, Article::CATEGORY_VIDEO), $count, $page);

$urlPattern = $this->linkFactory->videoTag($type, $tags);

return $this->render("articles", $urlPattern, [

"tagName" => $tagsStr,

"articles" => $articles,

"matchType" => $type,

"tdk" => [

"topic" => $this->findTdkTags($tagsStr),

]

]);

}

明显看到,是有一个page 参数,我们可以给一个默认为空即可。

详细举一个例子 来讲

报错提示

abstract class A {

// 方法无参数

public static function foo(){ echo 'bar'; }

}

abstract class B extends A {

// 方法有参数

public static function foo($str){ echo $str; }

}

?>

如上面的代码:类A中的foo方法无参数,类B在继承A后重写foo方法时加入了参数,因此会产生一个类似下面E_STRICT级别的警告:

Strict standards: Declaration of ... should be compatible with that of ...

解决方法:

abstract class A {

// 方法无参数

public static function foo(){ echo 'bar'; }

}

abstract class B extends A {

// 方法有参数

public static function foo($str = NULL){ echo $str; }

}

?>

解决办法

类B在重写foo方法时为新加入的参数指定一个默认值即可。

本作品采用《CC 协议》,转载必须注明作者和本文链接

感谢关注

上海PHP自学中心-免费编程视频教学|



推荐阅读
author-avatar
水门街口卖瓜子的
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有