Kkkk遠
2018-12-15 13:38
老师好,user继承后不能调用showName方法,自己新写一个index方法也不可以调用。但是如果不继承,新写的方法就可以被调用,这是为什么呢?
namespace app\index\controller;
use app\common\controller\User as commonUser;
class User extends commonUser
{
// public function showName($name = '')
// {
// return parent::showName('may'); // TODO: Change the autogenerated stub
// }
public function demo(){
return $this->showName("Lee");
}
}
怎么贴的图片不见了?
我使用了两种方法都可以调用,你仔细检查一下?
快速入门ThinkPHP 5.0--基础篇
58655 学习 · 495 问题
相似问题