視頻學習地址:php
http://study.163.com/course/courseMain.htm?courseId=1004171002html
源碼和文檔(若是滿意,歡迎 star):mysql
https://github.com/RiversCoder/tp5-apigit
百度雲盤連接:https://pan.baidu.com/s/1jMNumEOJ2yO5kSKYfnGjOw 密碼:l8qrgithub
1 <?php 2 namespace app\index\controller; 3 class Index { 4 public function index() { 5 $data = array( 6 'name' => 'red_panda', 7 'address' => 'China', 8 ); 9 $code = 200; 10 $msg = 'ok'; 11 return json_encode(['data' => $data, 'code' => $code, 'message' => $msg]); 12 } 13 }
config.php裏能夠改輸出的類型(這樣就能夠直接return array了).sql
'default_return_type'=>'json' // html/json/xml/thinkphp
1 <?php 2 namespace app\index\controller; 3 use \think\Request; 4 class Index { 5 public function index() { 6 $request = Request::instance(); 7 echo '請求方法:' . $request->method() . '<br/>'; 8 echo '訪問地址:' . $request->ip() . '<br/>'; 9 echo '請求參數:'; 10 dump($request->param()); 11 echo '請求參數:僅包含name,sex'; 12 dump($request->only(['name', 'sex'])); 13 echo '請求參數:排除name,sex'; 14 dump($request->except(['name', 'sex'])); 15 } 16 }
效果:數據庫
postman post請求方法:json
返回參數:api
thinkphp5裏判斷請求方法:
1 <?php 2 namespace app\index\controller; 3 use \think\Request; 4 class Test { 5 public function index() { 6 $request = Request::instance(); 7 // 是否爲 GET 請求 8 if (Request::instance()->isGet()) echo "當前爲 GET 請求"; 9 // 是否爲 POST 請求 10 if (Request::instance()->isPost()) echo "當前爲 POST 請求"; 11 // 是否爲 PUT 請求 12 if (Request::instance()->isPut()) echo "當前爲 PUT 請求"; 13 // 是否爲 DELETE 請求 14 if (Request::instance()->isDelete()) echo "當前爲 DELETE 請求"; 15 // 是否爲 Patch 請求 16 if (Request::instance()->isPatch()) echo "當前爲 PATCH 請求"; 17 } 18 }
1 <?php 2 namespace app\index\controller; 3 use \think\Validate; 4 class Test { 5 public function index() { 6 $rule = [ 7 //utf-8 一個字符對應3個字母/數字 對應2個漢字(因此這裏能夠入3個字母/數字或者一個漢字) 8 'name' => 'require|max:3', 9 'age' => 'number|between:1,120', 10 'email' => 'email', 11 ]; 12 $msg = [ 13 'name.require' => '名稱必須', 14 'name.max' => '名稱最多不能超過3個字符', 15 'age.number' => '年齡必須是數字', 16 'age.between' => '年齡只能在1-120之間', 17 'email' => '郵箱格式錯誤', 18 ]; 19 $data = input('post.'); 20 $validate = new Validate($rule, $msg); 21 $result = $validate->check($data); 22 if (!$result) { 23 dump($validate->getError()); 24 } 25 } 26 }
效果:
**鏈接數據庫**
/* 數據庫設置 */ 'database' => [ // 數據庫類型 'type' => 'mysql', // 服務器地址 'hostname' => '127.0.0.1', // 數據庫名 'database' => 'thinkphp', // 數據庫用戶名 'username' => 'root', // 數據庫密碼 'password' => '', // 數據庫鏈接端口 'hostport' => '', // 數據庫鏈接參數 'params' => [], // 數據庫編碼默認採用utf8 'charset' => 'utf8', // 數據庫表前綴 'prefix' => '', // 數據庫調試模式 'debug' => false, ],
1 <?php 2 namespace app\index\controller; 3 use think\Db; 4 class Index 5 { 6 public function index() 7 { 8 $res = Db::query('select version()'); 9 return $res; 10 } 11 }