index控制器中的代码

Original 2019-06-08 08:08:33 179
abstract:<?php namespace app\admin\controller; use think\Controller; class Index extends Controller {     public function index()    &
<?php
namespace app\admin\controller;

use think\Controller;

class Index extends Controller
{
    public function index()
    {
        return $this->fetch();
    }

    public function welcome()
    {
    	
    	return $this->fetch();
    }
    
}
?>

index控制器中的代码

Correcting teacher:查无此人Correction time:2019-06-10 09:48:30
Teacher's summary:完成的不错。php的框架多学几款,对以后工作有帮助。继续加油

Release Notes

Popular Entries