An open API service indexing awesome lists of open source software.

https://github.com/blixt/php-jsonhttpinterface

PHP JSON via HTTP interface
https://github.com/blixt/php-jsonhttpinterface

Last synced: 5 months ago
JSON representation

PHP JSON via HTTP interface

Awesome Lists containing this project

README

          

# PHP JSON via HTTP interface

## Information

The `JsonHttpInterface` class wraps a class instance and makes all its public
methods callable through HTTP, accepting named parameters (JSON encoded) and
returning the result JSON encoded.

## Examples

Assume this is **myservice.php**:

exec();
?>

Now make an HTTP call to `myservice.php/add?a=1300&b=37` and you will get this
response (indented for readability):

{
"status": "success",
"response": 1337
}

## MIT license

This project is licensed under an [MIT license][].

Copyright © 2011 Andreas Blixt ()

[MIT license]: http://www.opensource.org/licenses/mit-license.php