<?phpnamespace app\index\controller;use app\index\controller\Base;class Index extends Base{ public functionindex()## #{ $ this-&gt; islogin(); //ユーザーがにログインしているかどうかを決定します。
嗯哼
$this->isLogin();
isLogin() このメソッドはクラスにありません。クラスに新しい isLogin();$this-> を追加する必要があります。現在のオブジェクト 例:
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() に何か問題があるはずです
次の文を追加すると、ページが間違っています
$this->isLogin() //ユーザーがログインしているかどうかを判断します