下面由thinkphp框架教程栏目给大家介绍thinkphp控制器的定义和使用,希望对需要的朋友有所帮助!
控制器定义
类名和文件名一样,
渲染输出
渲染输出使用return输出
'ming', 'ming' => 'xiao' ); return json($data); }}
此时页面渲染出json文件
不能在控制器中中断代码。。
使用halt输出
立即学习“PHP免费学习笔记(深入)”;
'ming', 'ming' => 'xiao' ); halt("输出测试"); return json($data); }}
使用halt 输出

多级控制器
多级控制器 多级控制器直接在命名空间中使用
5, 'name' => 'ming'])); return $id; }}
定义了Index命名空间下的子控制器 Blog
目录结构
定义路由规则
<?phpuse thinkfacadeRoute;Route::rule('blog/:id', 'index.blog/read');Route::rule('/', 'Index/index');
访问index路由下的blog目录
基础控制器
控制器都会有一个基础控制器
系统会提供一个
appBaseController
基础控制器
目录文件如下
AI图像编辑器
使用文本提示编辑、变换和增强照片
46 查看详情
所有的控制都有一个基础控制类
appBaseController
由于是多应用模式。。基础类移动到目录下
更改命名空间
namespace appindexcontroller;use thinkApp;use thinkexceptionValidateException;use thinkValidate;
request->action(); $path = $this->app->getBasePath(); var_dump($action); var_dump($path); } /** * 显示创建资源表单页. * * @return thinkResponse */ public function create() { // } /** * 保存新建的资源 * * @param thinkRequest $request * @return thinkResponse */ public function save(Request $request) { // } /** * 显示指定的资源 * * @param int $id * @return thinkResponse */ public function read($id) { // } /** * 显示编辑资源表单页. * * @param int $id * @return thinkResponse */ public function edit($id) { // } /** * 保存更新的资源 * * @param thinkRequest $request * @param int $id * @return thinkResponse */ public function update(Request $request, $id) { // } /** * 删除指定资源 * * @param int $id * @return thinkResponse */ public function delete($id) { // }}
输出内容
string(5) "index" string(43) "/home/ming/PhpstormProjects/untitled12/app/"
控制器验证
validate( [ 'name' => 'thinkphp', 'email' => 'thinkphp@qq.com', ], 'appindexvalidateUser'); } catch (ValidateException $e) { // 验证失败 输出错误信息 dump($e->getError()); } } /** * 显示创建资源表单页. * * @return thinkResponse */ public function create() { // } /** * 保存新建的资源 * * @param thinkRequest $request * @return thinkResponse */ public function save(Request $request) { // } /** * 显示指定的资源 * * @param int $id * @return thinkResponse */ public function read($id) { // } /** * 显示编辑资源表单页. * * @param int $id * @return thinkResponse */ public function edit($id) { // } /** * 保存更新的资源 * * @param thinkRequest $request * @param int $id * @return thinkResponse */ public function update(Request $request, $id) { // } /** * 删除指定资源 * * @param int $id * @return thinkResponse */ public function delete($id) { // }}
这样控制器验证
空控制器
空控制器是当找不到的方法的时候调用的方法
public function __call($name, $arguments) { // TODO: Implement __call() method. return 'error request'; }
资源控制器
创建restful控制器
输入
php think make:controller index@Blog
生成资源控制器
生成api
<?phpnamespace appindexcontroller;use thinkRequest;class Blog{ /** * 显示资源列表 * * @return thinkResponse */ public function index() { // } /** * 保存新建的资源 * * @param thinkRequest $request * @return thinkResponse */ public function save(Request $request) { // } /** * 显示指定的资源 * * @param int $id * @return thinkResponse */ public function read($id) { // } /** * 保存更新的资源 * * @param thinkRequest $request * @param int $id * @return thinkResponse */ public function update(Request $request, $id) { // } /** * 删除指定资源 * * @param int $id * @return thinkResponse */ public function delete($id) { // }}
注册资源路由即可
Route::resource('blog', 'Blog');
控制器中间件
编写控制器
hello = 'ming'; return $next($request); }}
使用路由注册控制器
middleware( [ appindexmiddlewareHello::class ]);
访问 http://localhost:8082/index/ming
出现 ming
说明中间件注册成功。
推荐:《最新的10个thinkphp视频教程》
以上就是一文详解thinkphp控制器的定义和使用的详细内容,更多请关注创想鸟其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 chuangxiangniao@163.com 举报,一经查实,本站将立刻删除。
发布者:程序猿,转转请注明出处:https://www.chuangxiangniao.com/p/481989.html
微信扫一扫
支付宝扫一扫