程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP編寫RESTful接口的方法,php編寫restful

PHP編寫RESTful接口的方法,php編寫restful

編輯:關於PHP編程

PHP編寫RESTful接口的方法,php編寫restful


這是一個輕量級框架,專為快速開發RESTful接口而設計。如果你和我一樣,厭倦了使用傳統的MVC框架編寫微服務或者前後端分離的API接口,受不了為了一個簡單接口而做的很多多余的coding(和CTRL-C/CTRL-V),那麼,你肯定會喜歡這個框架!

先舉個栗子
1、寫個HelloWorld.php,放到框架指定的目錄下(默認是和index.php同級的apis/目錄)

/**
 * @path("/hw")
 */
class HelloWorld
{
  /** 
   * @route({"GET","/"})
   */
  public function doSomething() {
    return "Hello World!";
  }
}

2、浏覽器輸入http://your-domain/hw/
你將看到:Hello World!就是這麼簡單,不需要額外配置,不需要繼承也不需要組合。
發生了什麼
回過頭看HelloWorld.php,特殊的地方在於注釋(@path,@route),沒錯,框架通過注釋獲取路由信息和綁定輸入輸出。但不要擔心性能,注釋只會在類文件修改後解析一次。更多的@注釋後面會說明。

再看個更具體的例子
這是一個登錄接口的例子

/**
 * 用戶權限驗證
 * @path("/tokens/") 
 */
class Tokens
{ 
  /**
   * 登錄
   * 通過用戶名密碼授權
   * @route({"POST","/accounts/"}) 
   * @param({"account", "$._POST.account"}) 賬號
   * @param({"password", "$._POST.password"}) 密碼
   * 
   * @throws ({"InvalidPassword", "res", "403 Forbidden", {"error":"InvalidPassword"} }) 用戶名或密碼無效
   * 
   * @return({"body"})  
   * 返回token,同cookie中的token相同,
   * {"token":"xxx", "uid" = "xxx"}
   *
   * @return({"cookie","token","$token","+365 days","/"}) 通過cookie返回token
   * @return({"cookie","uid","$uid","+365 days","/"}) 通過cookie返回uid
   */
  public function createTokenByAccounts($account, $password, &$token,&$uid){
    //驗證用戶
    $uid = $this->users->verifyPassword($account, $password);
    Verify::isTrue($uid, new InvalidPassword($account));
    $token = ...;
    return ['token'=>$token, 'uid'=>$uid];
  } 
  /**
   * @property({"default":"@Users"})  依賴的屬性,由框架注入
   * @var Users
   */
  public $users;
}

還能做什麼

  • 依賴管理(依賴注入),
  • 自動輸出接口文檔(不是doxgen式的類、方法文檔,而是描述http接口的文檔)
  • 接口緩存
  • hook

配合ezsql訪問數據庫
ezsql是一款簡單的面向對象的sql構建工具,提供簡單的基本sql操作。
接口

/** @path(/myclass) */
class MyClass{

  /**
  * @route({"GET","/do"})
  * @param({"arg0","$._GET.arg0"})
  */
  public doSomething($arg0){
    return Sql::select('xxx')->from('table_xxx')->where( 'xxx = ?', $arg0)->get($this->db);
  }
  /**
   * 依賴注入PDO實例
   * @property
   * @var PDO
   */
  public $db;
}

配置文件

{
  {
    "MyClass":{
      "properties":{
        "db":"@db1"   
      }
    },
  },
  "db1":{
    "singleton":true,
    "class":"PDO",
    "pass_by_construct":true,
    "properties":{
      "dsn":"mysql:host=127.0.0.1;dbname=xxx",
      "username":"xxxx",
      "passwd":"xxxx"      
    }
  },
}

以上就是本文的全部內容,希望對大家的學習有所幫助。

您可能感興趣的文章:

  • php處理restful請求的路由類分享
  • PHP實現自動識別Restful API的返回內容類型
  • php基於curl擴展制作跨平台的restfule 接口

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved