Thinkphp5.0快速入门笔记(3)
學(xué)習(xí)來源與說明
https://www.kancloud.cn/thinkphp/thinkphp5_quickstart
測(cè)試與部署均在windows10下進(jìn)行學(xué)習(xí)。
快速入門第三節(jié)
獲取當(dāng)前的請(qǐng)求信息的四種方案
繼承think\Controller
<?php namespace app\index\controller; use think\Controller; class Index extends Controller {public function hello($name = 'World'){// 獲取當(dāng)前URL地址 不含域名echo 'url: ' . $this->request->url() . '<br/>';return 'Hello,' . $name . '!';} }訪問界面并傳遞參數(shù):http://127.0.0.1/index/index/hello/name/123,網(wǎng)頁獲取name值為123,輸出了請(qǐng)求的url。
效果:
自動(dòng)注入請(qǐng)求對(duì)象
方法帶入形參
<?php namespace app\index\controller; use think\Request; class Index {public function hello(Request $request, $name = 'World'){// 獲取當(dāng)前URL地址 不含域名echo 'url: ' . $request->url() . '<br/>';return 'Hello,' . $name . '!';} }?
使用助手函數(shù)
系統(tǒng)提供的方法
<?php namespace app\index\controller; class Index {public function hello($name = 'World'){// 獲取當(dāng)前URL地址 不含域名echo 'url: ' . request()->url() . '<br/>';return 'Hello,' . $name . '!';} }?
動(dòng)態(tài)綁定屬性
方便全局調(diào)用(未直接示例)
制作Base控制器:
<?php namespace app\index\controller; use app\index\model\User; use think\Controller; use think\Request; use think\Session; class Base extends Controller {public function _initialize(){$user = User::get(Session::get('user_id'));Request::instance()->bind('user',$user);} }其它控制器中調(diào)用:
<?php namespace app\index\controller; use app\index\controller\Base; use think\Request; class Index extends Base {public function index(Request $request){echo $request->user->id;echo $request->user->name;} }獲取請(qǐng)求變量
參數(shù)信息與輸出:
<?php namespace app\index\controller; use think\Request; class Index {public function hello(Request $request){echo '請(qǐng)求參數(shù):';dump($request->param());echo 'name:'.$request->param('name');} }輸入訪問網(wǎng)址:http://127.0.0.1/index/index/hello/name/123/test/ddd
輸出效果:
使用input助手函數(shù)代替$request->param()
<?php namespace app\index\controller; class Index {public function hello(){echo '請(qǐng)求參數(shù):';dump(input());echo 'name:'.input('name');} }過濾變量
public function hello(Request $request) {echo 'name:'.$request->param('name','World','strtolower');echo '<br/>test:'.$request->param('test','thinkphp','strtoupper'); }獲取其它參數(shù)
<?php namespace app\index\controller; use think\Request; class Index {public function hello(Request $request){echo 'GET參數(shù):';dump($request->get());echo 'GET參數(shù):name';dump($request->get('name'));echo 'POST參數(shù):name';dump($request->post('name'));echo 'cookie參數(shù):name';dump($request->cookie('name'));echo '上傳文件信息:image';dump($request->file('image'));} } <?php namespace app\index\controller; use think\Request; class Index {public function hello(Request $request){echo '請(qǐng)求方法:' . $request->method() . '<br/>';echo '資源類型:' . $request->type() . '<br/>';echo '訪問IP:' . $request->ip() . '<br/>';echo '是否AJax請(qǐng)求:' . var_export($request->isAjax(), true) . '<br/>';echo '請(qǐng)求參數(shù):';dump($request->param());echo '請(qǐng)求參數(shù):僅包含name';dump($request->only(['name']));echo '請(qǐng)求參數(shù):排除name';dump($request->except(['name']));} }?
<?php namespace app\index\controller; use think\Request; class Index {public function hello(Request $request,$name = 'World'){// 獲取當(dāng)前域名echo 'domain: ' . $request->domain() . '<br/>';// 獲取當(dāng)前入口文件echo 'file: ' . $request->baseFile() . '<br/>';// 獲取當(dāng)前URL地址 不含域名echo 'url: ' . $request->url() . '<br/>';// 獲取包含域名的完整URL地址echo 'url with domain: ' . $request->url(true) . '<br/>';// 獲取當(dāng)前URL地址 不含QUERY_STRINGecho 'url without query: ' . $request->baseUrl() . '<br/>';// 獲取URL訪問的ROOT地址echo 'root:' . $request->root() . '<br/>';// 獲取URL訪問的ROOT地址echo 'root with domain: ' . $request->root(true) . '<br/>';// 獲取URL地址中的PATH_INFO信息echo 'pathinfo: ' . $request->pathinfo() . '<br/>';// 獲取URL地址中的PATH_INFO信息 不含后綴echo 'pathinfo: ' . $request->path() . '<br/>';// 獲取URL地址中的后綴信息echo 'ext: ' . $request->ext() . '<br/>';return 'Hello,' . $name . '!';} } public function hello(Request $request, $name = 'World') { echo '模塊:'.$request->module(); echo '<br/>控制器:'.$request->controller(); echo '<br/>操作:'.$request->action(); }使用助手函數(shù)的示例:
<?php namespace app\index\controller; class Index {public function hello(){echo 'GET參數(shù):';dump(input('get.'));echo 'GET參數(shù):name';dump(input('get.name'));echo 'POST參數(shù):name';dump(input('post.name'));echo 'cookie參數(shù):name';dump(input('cookie.name'));echo '上傳文件信息:image';dump(input('file.image'));} }?
響應(yīng)對(duì)象
自動(dòng)輸出xml,json等格式的響應(yīng)
修改默認(rèn)輸出類型:'default_return_type' => 'json',//或者為xml等(config.php)
然后設(shè)計(jì)如下控制器:
<?php namespace app\index\controller; class Index {public function hello(){$data = ['name' => 'thinkphp', 'status' => '1'];return $data;} }輸出:
手動(dòng)輸出各種格式響應(yīng)
不需要配置config.php,直接建立如下控制器即可完成相同輸出。
?
<?php namespace app\index\controller; class Index {public function hello(){$data = ['name' => 'thinkphp', 'status' => '1'];return json($data);} }也可以手動(dòng)輸出帶狀態(tài)返回碼在內(nèi)的其它信息的響應(yīng)格式
<?php namespace app\index\controller; class Index {public function hello(){$data = ['name' => 'thinkphp', 'status' => '1'];return json($data, 201, ['Cache-control' => 'no-cache,must-revalidate']);} }頁面跳轉(zhuǎn)方法
<?php namespace app\index\controller; class Index {use \traits\controller\Jump;public function index($name=''){if ('thinkphp' == $name) {$this->success('歡迎使用ThinkPHP5.0','hello');}else {$this->error('錯(cuò)誤的name','guest');}}public function hello(){return 'Hello,ThinkPHP!';}public function guest(){return 'Hello,Guest!';} }以上代碼引入的traits\controller\Jump,使用success和error,輸出了表情、提示信息,然后3秒跳轉(zhuǎn)到指定的方法。
在traits\controller\Jump中,頁面重定向的方法為:
$this->redirect('http://thinkphp.cn');直接重新定向到指定頁面。
系統(tǒng)也提供了助手函數(shù)有同樣效果:
redirect('http://thinkphp.cn')?
轉(zhuǎn)載于:https://www.cnblogs.com/bai2018/p/11355036.html
總結(jié)
以上是生活随笔為你收集整理的Thinkphp5.0快速入门笔记(3)的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Vue监控器watch的全面解析
- 下一篇: 二进制、字节、int范围、编码