<?phpnamespace appindexcontroller;use appindexcontrollerBase;class Index extends Base{ public function index() { $this->isLogin(); // 사용자가 로그인했는지 확인 return $ this-> ;view->fetch(); }}
嗯哼
$this->isLogin();
isLogin() 이 메소드는 클래스에 없습니다. 현재 개체 예:
class Index extends Base { public function index() { $this->isLogin(); //判断用户是否登录 return $this->view->fetch(); } public isLogin(){ #code 判断用户是否登录 } }
그럼 isLogin() 메소드에 뭔가 문제가 있는 게 틀림없어요
다음 문장을 추가하면 페이지가 잘못되었습니다
$this->isLogin() //사용자가 로그인했는지 확인
$this->isLogin();
isLogin() 이 메소드는 클래스에 없습니다. 현재 개체 예:
그럼 isLogin() 메소드에 뭔가 문제가 있는 게 틀림없어요
다음 문장을 추가하면 페이지가 잘못되었습니다
$this->isLogin() //사용자가 로그인했는지 확인