使用 Zend Framework 构建 REST API 服务器的示例?
我是 Zend Framework(不是 PHP)的新手,我需要使用 Zend 创建一个基于 REST 的 API。
我见过使用 Zend_Rest_Server 的示例,但是其他消息来源表明它已被弃用。
我找不到一个可靠的例子来说明我应该如何构建这样的 API。
I'm new to Zend Framework (not to PHP), and I need to create a REST based API using Zend.
I've seen examples using Zend_Rest_Server, however other sources state that that has been deprecated.
I'm unable to find a solid example which shows how I should be building such an API.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
自 ZF 1.9 起,Zend_Rest_Server 确实已被弃用,您应该使用 Zend_Rest_Controller 代替。以下博客文章可能会有所帮助:构建 RESTful 服务使用 Zend Framework 和使用 Zend Framework 创建 RESTful 应用程序 。
Zend_Rest_Server is indeed deprecated since ZF 1.9, you should use Zend_Rest_Controller instead. The following blog posts could be helpful : Building RESTful Services with Zend Framework and Create RESTful Applications Using The Zend Framework.
可能这个链接会有所帮助: 使用 Zend 框架创建 PHP REST API。
此代码示例支持 XML 和 JSON 格式的 REST 数据。
先决条件:
May be this link would be helpful: Creating a PHP REST API Using the Zend Framework.
This code example support REST data in the format of XML and JSON.
Prerequisites:
如果您想了解更多详细信息,可以查看这本书
Zend Framework 2 应用程序开发。
本书通过实例解释了ZF2中面向API的系统的构建。
在本书末尾,您将获得:
这本书和任何编程书籍一样有很多语法错误,
但目前市场上只有一款。
If you want something a little more in details, you can check the book
Zend Framework 2 Application Development.
The book explains construction of API oriented system in ZF2, through examples.
At the end of book you get:
The book has a lot of syntax errors as well as any book for programming,
but it's only one on the market at this moment.