搜尋

首頁  >  問答  >  主體

判斷是否登入時頁面出錯,怎麼解決?

<?php
namespace app\index\controller;
use app\index\controller\Base;
class Index extends Base
{
   public function index()
   {
       $this->isLogin();   //判斷使用者是否登入
       return $this->view->fetch();
   return $this->view->fetch();
   return##}#

星河4p星河4p2699 天前1331

全部回覆(4)我來回復

  • 糊涂斌

    糊涂斌2017-08-30 11:25:53

    $this->isLogin();

    isLogin()這個方法不在你的類別裡面;你要在類別裡面新增一個isLogin();$this->是用來取得目前物件的非靜態屬性用的例如:

    class Index extends Base
    {
       public function index()
       {
           $this->isLogin();   //判断用户是否登录
           return $this->view->fetch();
       }
       public isLogin(){
           #code 判断用户是否登录
       }
    }


    回覆
    0
  • 鸢尾花

    回答不對

    鸢尾花 · 2018-01-03 18:57:03
  • ringa_lee

    ringa_lee2017-08-16 13:34:21

    那就一定是這個方法有問題了,isLogin()

    回覆
    0
  • 星河4p

    星河4p2017-08-16 09:09:53

    加了下面這一句,頁面就出錯了

    $this->isLogin();   //判斷使用者是否登入

    回覆
    0
  • 取消回覆