index.php的代码内容
namespace app\index\controller;
use think\Controller;
class Index
{
public function index()
{
return 'php';
}
public function hello()
{
return $this->fetch();
}
}
这个是hello.html的内容
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
class Index 没有继承 Controller
开启DEBUG 了解详细错误 原因