记录ThinkPhp,tp5获取get,post等方法
Posted avi9111
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了记录ThinkPhp,tp5获取get,post等方法相关的知识,希望对你有一定的参考价值。
use think\\Request;
class Name
{
$request = Request::instance();
$method = $request->method();//获取上传方式
$request->param();//获取所有参数,最全
$get = $request->get();获取get上传的内容
$post = $request->post();获取post上传的内容
$request->file('file')获取文件
}
Get,Post
use think\\Controller;
class Name
{
$method = $this->request->method();//获取上传方式
$this->request->param();//获取所有参数,最全
$get = $this->request->get();获取get上传的内容
$post = $this->request->post();获取post上传的内容
$this->request->file('file')获取文件
}
如何获取form的submit-value???
某开源框架写成这样,
105: <button type="submit" name="submit_to_save" value="save" class="btn btn-primary">确定保存</button>
106 <button type="submit" name="submit_to_next" value="next" class="btn btn-info">保存转交下一步</button>
107 <button type="submit" name="submit_to_end" value="end" class="btn btn-success">办结</button>
这时候Fiddler就很好用了
至于,代码要怎么写,随便。。。
以上是关于记录ThinkPhp,tp5获取get,post等方法的主要内容,如果未能解决你的问题,请参考以下文章