Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Beginner to PHP web services

What is the best way to implement web services in PHP?

I have heard about libraries like NuSOAP and WSO2 web service platform, but don't know what is the best (or good and easy to learn) for using web service in PHP?

like image 802
Manjula Avatar asked Mar 01 '23 02:03

Manjula


1 Answers

SOAP is certainly not the ONLY way to implement Web services. If you're open to other paradigms, have a look at REST.

Unlike SOAP (which has multiple standards/vendors), REST is both vendor- and protocol-agnostic. Instead, RESTful Web services are implemented using these guidelines (from the Wikipedia article):

A RESTful web service (also called a RESTful web API) is a simple web service implemented using HTTP and the principles of REST. Such a web service can be thought about as a collection of resources. The definition of such a web service can be thought of as comprising three aspects:

* The base URI for the web service, such as http://example.com/resources/
* The MIME type of the data supported by the web service. This is often JSON, XML or YAML but can be any other valid MIME type.
* The set of operations supported by the web service using HTTP methods (e.g., POST, GET, PUT or DELETE).

Back to PHP, here is the reference guide for the ZendFramework implementation of REST Server functionality.

Also, here is a link to another answer I gave that references some useful information regarding ZendFramework and REST.

like image 75
AJ. Avatar answered Mar 05 '23 17:03

AJ.