控制器代码
<?php namespace App\Controllers;
class Home extends \CodeIgniter\Controller {
public function __construct(){
parent::__construct();
// Your own constructor code
}
public function index(){
return view('home');
}
}
错误反馈==============第 6 行错误
APPPATH/Controllers\Home.php at line 6 1 <?php namespace App\Controllers; 2
3 class Home extends \CodeIgniter\Controller {
4
5 public function __construct(){
6 parent::__construct();
7
8 // Your own constructor code
9 }
10
|