您好,登錄后才能下訂單哦!
這篇文章主要介紹thinkphp5.0如何搭建restful風(fēng)格接口層,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
下面是基于ThinkPHP V5.0 RC4框架,以restful風(fēng)格完成的新聞查詢(get)、新聞增加(post)、新聞修改(put)、新聞刪除(delete)等server接口層。
1、下載ThinkPHP V5.0 RC4版本;
2、配置虛擬域名(非必須,只是為了方便);
Apache\conf\extra\httpd-vhosts.conf
<VirtualHost *:80> DocumentRoot "D:/webroot/tp5/public" ServerName www.tp5-restful.com <Directory "D:/webroot/tp5/public"> DirectoryIndex index.html index.php AllowOverride All Order deny,allow Allow from all </Directory> </VirtualHost>
3、開啟偽靜態(tài)支持.htaccess文件
apache方法:
a)在conf目錄下httpd.conf中找到下面這行并去掉#
LoadModule rewrite_module modules/mod_rewrite.so
b)將所有AllowOverride None改成AllowOverride All
public\.htaccess文件內(nèi)容:
<IfModule mod_rewrite.c> Options +FollowSymlinks -Multiviews RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1] </IfModule>
4、創(chuàng)建測試數(shù)據(jù)
tprestful.sql
-- -- 數(shù)據(jù)庫: `tprestful` -- -- -------------------------------------------------------- -- -- 表的結(jié)構(gòu) `news` -- CREATE TABLE IF NOT EXISTS `news` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(255) NOT NULL, `content` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='新聞表' AUTO_INCREMENT=1; -- -- 轉(zhuǎn)存表中的數(shù)據(jù) `news` -- INSERT INTO `news` (`id`, `title`, `content`) VALUES (1, '新聞1', '新聞1內(nèi)容'), (2, '新聞2', '新聞2內(nèi)容'), (3, '新聞3', '新聞3內(nèi)容'), (4, '房價又漲了', '據(jù)新華社消息:上海均價環(huán)比上漲5%');
5、修改數(shù)據(jù)庫配置文件
application\database.php
<?php return [ // 數(shù)據(jù)庫類型 'type' => 'mysql', // 服務(wù)器地址 'hostname' => '127.0.0.1', // 數(shù)據(jù)庫名 'database' => 'tprestful', // 用戶名 'username' => 'root', // 密碼 'password' => '123456', // 端口 'hostport' => '', // 連接dsn 'dsn' => '', // 數(shù)據(jù)庫連接參數(shù) 'params' => [], // 數(shù)據(jù)庫編碼默認采用utf8 'charset' => 'utf8', // 數(shù)據(jù)庫表前綴 'prefix' => '', // 數(shù)據(jù)庫調(diào)試模式 'debug' => true, // 數(shù)據(jù)庫部署方式:0 集中式(單一服務(wù)器),1 分布式(主從服務(wù)器) 'deploy' => 0, // 數(shù)據(jù)庫讀寫是否分離 主從式有效 'rw_separate' => false, // 讀寫分離后 主服務(wù)器數(shù)量 'master_num' => 1, // 指定從服務(wù)器序號 'slave_no' => '', // 是否嚴格檢查字段是否存在 'fields_strict' => true, // 數(shù)據(jù)集返回類型 array 數(shù)組 collection Collection對象 'resultset_type' => 'array', // 是否自動寫入時間戳字段 'auto_timestamp' => false, // 是否需要進行SQL性能分析 'sql_explain' => false, ];
6、定義restful風(fēng)格的路由規(guī)則,
application\route.php
<?php use think\Route; Route::get('/',function(){ return 'Hello,world!'; }); Route::get('news/:id','index/News/read'); //查詢 Route::post('news','index/News/add'); //新增 Route::put('news/:id','index/News/update'); //修改 Route::delete('news/:id','index/News/delete'); //刪除 //Route::any('new/:id','News/read'); // 所有請求都支持的路由規(guī)則
7、新建模型
application\index\model\News.php
<?php namespace app\index\model; use think\Model; class News extends Model{ protected $pk = 'id'; //protected static $table = 'news'; }
8、新建控制器
application\index\controller\News.php
<?php namespace app\index\controller; use think\Request; use think\controller\Rest; class News extends Rest{ public function rest(){ switch ($this->method){ case 'get': //查詢 $this->read($id); break; case 'post': //新增 $this->add(); break; case 'put': //修改 $this->update($id); break; case 'delete': //刪除 $this->delete($id); break; } } public function read($id){ $model = model('News'); //$data = $model::get($id)->getData(); //$model = new NewsModel(); $data=$model->where('id', $id)->find();// 查詢單個數(shù)據(jù) return json($data); } public function add(){ $model = model('News'); $param=Request::instance()->param();//獲取當前請求的所有變量(經(jīng)過過濾) if($model->save($param)){ return json(["status"=>1]); }else{ return json(["status"=>0]); } } public function update($id){ $model = model('News'); $param=Request::instance()->param(); if($model->where("id",$id)->update($param)){ return json(["status"=>1]); }else{ return json(["status"=>0]); } } public function delete($id){ $model = model('News'); $rs=$model::get($id)->delete(); if($rs){ return json(["status"=>1]); }else{ return json(["status"=>0]); } } }
9、測試
a)、訪問入口文件,默認在public\index.php
b)、客戶端測試restful的get、post、put、delete方法
client\client.php
<?php require_once './ApiClient.php'; $param = array( 'title' => '房價又漲了', 'content' => '據(jù)新華社消息:上海均價環(huán)比上漲5%' ); $api_url = 'http://www.tp5-restful.com/news/4'; $rest = new restClient($api_url, $param, 'get'); $info = $rest->doRequest(); //$status = $rest->status;//獲取curl中的狀態(tài)信息 $api_url = 'http://www.tp5-restful.com/news'; $rest = new restClient($api_url, $param, 'post'); $info = $rest->doRequest(); $api_url = 'http://www.tp5-restful.com/news/4'; $rest = new restClient($api_url, $param, 'put'); $info = $rest->doRequest(); echo '<pre/>'; print_r($info);exit; $api_url = 'http://www.tp5-restful.com/news/4'; $rest = new restClient($api_url, $param, 'delete'); $info = $rest->doRequest(); ?>
請求工具類
client\ApiClient.php
<?php class restClient { //請求的token const token='yangyulong'; //請求url private $url; //請求的類型 private $requestType; //請求的數(shù)據(jù) private $data; //curl實例 private $curl; public $status; private $headers = array(); /** * [__construct 構(gòu)造方法, 初始化數(shù)據(jù)] * @param [type] $url 請求的服務(wù)器地址 * @param [type] $requestType 發(fā)送請求的方法 * @param [type] $data 發(fā)送的數(shù)據(jù) * @param integer $url_model 路由請求方式 */ public function __construct($url, $data = array(), $requestType = 'get') { //url是必須要傳的,并且是符合PATHINFO模式的路徑 if (!$url) { return false; } $this->requestType = strtolower($requestType); $paramUrl = ''; // PATHINFO模式 if (!empty($data)) { foreach ($data as $key => $value) { $paramUrl.= $key . '=' . $value.'&'; } $url = $url .'?'. $paramUrl; } //初始化類中的數(shù)據(jù) $this->url = $url; $this->data = $data; try{ if(!$this->curl = curl_init()){ throw new Exception('curl初始化錯誤:'); }; }catch (Exception $e){ echo '<pre>'; print_r($e->getMessage()); echo '</pre>'; } curl_setopt($this->curl, CURLOPT_URL, $this->url); curl_setopt($this->curl, CURLOPT_RETURNTRANSFER, 1); //curl_setopt($this->curl, CURLOPT_HEADER, 1); } /** * [_post 設(shè)置get請求的參數(shù)] * @return [type] [description] */ public function _get() { } /** * [_post 設(shè)置post請求的參數(shù)] * post 新增資源 * @return [type] [description] */ public function _post() { curl_setopt($this->curl, CURLOPT_POST, 1); curl_setopt($this->curl, CURLOPT_POSTFIELDS, $this->data); } /** * [_put 設(shè)置put請求] * put 更新資源 * @return [type] [description] */ public function _put() { curl_setopt($this->curl, CURLOPT_CUSTOMREQUEST, 'PUT'); } /** * [_delete 刪除資源] * delete 刪除資源 * @return [type] [description] */ public function _delete() { curl_setopt($this->curl, CURLOPT_CUSTOMREQUEST, 'DELETE'); } /** * [doRequest 執(zhí)行發(fā)送請求] * @return [type] [description] */ public function doRequest() { //發(fā)送給服務(wù)端驗證信息 if((null !== self::token) && self::token){ $this->headers = array( 'Client-Token:'.self::token,//此處不能用下劃線 'Client-Code:'.$this->setAuthorization() ); } //發(fā)送頭部信息 $this->setHeader(); //發(fā)送請求方式 switch ($this->requestType) { case 'post': $this->_post(); break; case 'put': $this->_put(); break; case 'delete': $this->_delete(); break; default: curl_setopt($this->curl, CURLOPT_HTTPGET, TRUE); break; } //執(zhí)行curl請求 $info = curl_exec($this->curl); //獲取curl執(zhí)行狀態(tài)信息 $this->status = $this->getInfo(); return $info; } /** * 設(shè)置發(fā)送的頭部信息 */ private function setHeader(){ curl_setopt($this->curl, CURLOPT_HTTPHEADER, $this->headers); } /** * 生成授權(quán)碼 * @return string 授權(quán)碼 */ private function setAuthorization(){ $authorization = md5(substr(md5(self::token), 8, 24).self::token); return $authorization; } /** * 獲取curl中的狀態(tài)信息 */ public function getInfo(){ return curl_getinfo($this->curl); } /** * 關(guān)閉curl連接 */ public function __destruct(){ curl_close($this->curl); } }
以上是“thinkphp5.0如何搭建restful風(fēng)格接口層”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。