abstract:渲染后台操作控制器内容<?phpnamespace app\admin\controller;use think\captcha\Captcha;use think\Controller;class Account extends Controller{ function login(){return $this->fetch(); }}
渲染后台操作控制器内容
<?php
namespace app\admin\controller;
use think\captcha\Captcha;
use think\Controller;
class Account extends Controller
{
function login(){
return $this->fetch();
}
}
Correcting teacher:天蓬老师Correction time:2019-03-30 10:43:26
Teacher's summary:function login(){
...
}
这样定义函数是不符合PSR标准的, 大括号应该独立占一行:
function login()
{
.......
}