1. Go to this page and download the library: Download diomac/php-api-rest library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
diomac / php-api-rest example snippets
/**
* @method get
* @route /auth/usr-data/id/{id}
* @guard(
* className="example\core\secure\ExampleGuard",
* @parameters(operationId="GETUSERDATA")
* )
*/
function getUsrData()
{
// ... your code
$this->response->setCode(Response::OK); // set HTTP response code
$this->response->setBodyJSON($jsonSerializable); // set responde data
return $this->response; // return response object
}
$this->response->setHeader('name', 'value'); // set HTTP header response
$this->response->setCode(Response::BAD_REQUEST); // set HTTP response code
$this->response->setBody('string'); // set response body
$this->response->setBodyJSON(\JsonSerializable object); // set response body to convert in JSON
$this->response->setContentType(''); // set content type response (for setBodyJSON not needed)
return $this->response;
/**
* @method get
* @route /auth/usr-data/id/{id}
* @guard(
* className="example\core\secure\ExampleGuard"
* )
* @guard(
* className="example\core\secure\ExampleGuardWithParams",
* @parameters(operationId="GETUSERDATA", operationName="GETUSERDATA")
* )
*/
function getUsrData()
{
// ... your code
$this->response->setCode(Response::OK); // set HTTP response code
$this->response->setBodyJSON($ this->request->getData()); // set responde data
return $this->response; // return response object
}
/**
* @method get
* @route /example/api/value1/{value1}/value2/{value2}
* @summary Example api rest php
*/
function getUsrData(): Response
{
...
}
...
"get": {
"summary": "Example api rest php",
...
/**
* @method get
* @route /example/api/value1/{value1}/value2/{value2}
* @description A example api rest php
*/
function getUsrData(): Response
{
...
}
...
"get": {
"description": "A example api rest php",
...
/**
* @method get
* @route /example/api/value1/{value1}/value2/{value2}
* @consumeType text/plain; charset=utf-8
*/
function getUsrData(): Response
{
...
}