vote up 4 vote down star
2

Hi All,

I'm looking to create a RESTful or pseudo-Restful based web service on a PHP/MySql stack. I'm wondering what some of the frameworks you suggest I look at?

I've been looking at Zend with Zend_Rest, but I'm curious to other things out there.

Ideally, there's be some form of ActiveRecord based object mapping to the exposed web service to make working with a MySQL database simpler.

Also, doesn't have to be true REST, passing in a parameter to the url is perfectly acceptable for DELETES and PUTS.

There will also be NO UI written in PHP with this, just pure XML POST/Response web service.

Thanks

flag

79% accept rate

5 Answers

vote up 1 vote down check

Here are a few good libraries for REST based webservices:

I personally use Zend_Rest...

Other links:

link|flag
Zend_Rest is very much RPC. Nothing you should call REST. It doesn't use all the HTTP-verbs, resources, etc.. – Till Oct 27 '08 at 1:32
In other words, Zend_Rest will only work well if I limit the RESTful client (e.g. Flex) to what Zend_Rest really supports, – PHP thinker Nov 7 at 17:47
vote up 2 vote down

i like Konstrukt, there is also good book http://www.packtpub.com/restful-php-web-services/book

link|flag
It would help if you could elaborate why Konstrukt is so great. I'm really curious too. :) – Till Oct 27 '08 at 1:34
vote up 0 vote down

take a look at symfony 1.2

link|flag
vote up 1 vote down

also checkout Recess Framework

link|flag
vote up 1 vote down

The Recess PHP Framework sounds like it will perfectly cover your use case. You can specify the data model in a graphical UI (called Recess Tools) and it will generate models as well as a simple RESTful interface for you.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.