<?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##}#
糊涂斌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 判断用户是否登录 } }