<?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##}#
$this->isLogin();
isLogin()這個方法不在你的類別裡面;你要在類別裡面新增一個isLogin();$this->是用來取得目前物件的非靜態屬性用的例如:
那就一定是這個方法有問題了,isLogin()
加了下面這一句,頁面就出錯了
$this->isLogin(); //判斷使用者是否登入