thinkphp公共控制器$this方法引用出错


图片描述

图片描述

图片描述

thinkphp

SUNWEI 9 years, 3 months ago

因为你的 PublicController 中的构造方法把 Controller 类中的构造方法覆盖了。


 class PublicController extends Controller
{
    public function __construct()
    {
        parent::__construct():
    }  
}

raejean answered 9 years, 3 months ago

IndexController.class.php


 <?php
namespace Home\Controller;
use Home\Controller\PublicController;
?>

bee配音 answered 9 years, 3 months ago

Your Answer