<?php
namespace app\admins\controller;
use think\Controller;
use Util\data\Sysdb;
class Test extends Controller
{
public function index(){
$this->db = new Sysdb ;
$res = $this->db->table('admins')->field('id,username')->lists();
# dump ($res);
}
}
會顯示網頁無法運作,去掉extends Controller就不會報這個錯誤