donglu2523 2010-11-15 06:31 采纳率: 100%
浏览 81
已采纳

用于帮助构建PHP RESTful API的类或框架[关闭]

I am looking to create a RESTFul PHP based API, and I am wondering if there are any good prebuilt REST server classes or frameworks?

Basically just want a class to handle routing, and finally, it should be able to return back JSON or XML. I don't care about the VERB types (GET, POST, PUT, DELETE), because for example, if somebody wants to delete a record, I want them to be able to simply type in a URL into their browser to delete. If you look at the VERB, and only allow DELETE, its means this inst possible.

An example, is that I want to be able to write a simple class like:

class Customers {
    public function get($customer_id) {
        //{ "response" : [ { "first" : "Bob", "last" : "Smith", "company" : "ABC Inc." } ] }
    }

    public function delete($customer_id) {
       //{ "response" : "deleted" }
    }

    //POST
    public function create($first_name, $last_name, $company) {
       //{ "response" : "12322" }
    }
}

Which would create the following routes:

/customers/get/12322
/customers/delete/12322
/customers/create *post data*

Thanks greatly.

  • 写回答

2条回答 默认 最新

  • doujie7346 2010-11-15 06:44
    关注

    See Fat-Free Framework, specifically F3::map()

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 安卓adb backup备份应用数据失败
  • ¥15 eclipse运行项目时遇到的问题
  • ¥15 关于#c##的问题:最近需要用CAT工具Trados进行一些开发
  • ¥15 南大pa1 小游戏没有界面,并且报了如下错误,尝试过换显卡驱动,但是好像不行
  • ¥15 没有证书,nginx怎么反向代理到只能接受https的公网网站
  • ¥50 成都蓉城足球俱乐部小程序抢票
  • ¥15 yolov7训练自己的数据集
  • ¥15 esp8266与51单片机连接问题(标签-单片机|关键词-串口)(相关搜索:51单片机|单片机|测试代码)
  • ¥15 电力市场出清matlab yalmip kkt 双层优化问题
  • ¥30 ros小车路径规划实现不了,如何解决?(操作系统-ubuntu)