dev-master
9999999-devSimple class implement request with JSON body.
MIT
The Requires
- php >=5.4.0
request request with json request json request with json body simple request
Wallogit.com
2017 © Pedro Peláez
Simple class implement request with JSON body.
The minimum requirement by this application template that your Web server supports PHP 5.4.0., (*1)
If you do not have Composer, you may install it by following the instructions at getcomposer.org., (*2)
You can then install this widget. Put in your composer.json in require case:, (*3)
"vitalik74/simple-request-json": "*"
And run command "composer update"., (*4)
Data request run from Curl in default. If Curl not installed in system data request run from file_get_contents function., (*5)
$response = (new Request(['url' => 'Url ', 'postData' => 'post data']))->getResponse();
Or, (*6)
$response = new Request(['url' => 'Url ', 'postData' => 'post data']); $response = $response->getResponse();
Or, (*7)
$response = new Request(); $response->url = 'url'; $response->postData = 'post data'; $response->method = 'GET';// default in POST $response = $response->getResponse();
$postData - Post data to put in server., (*8)
$url - Url from server., (*9)
$method - POST or GET method., (*10)
$toArray - Convert response from server to array with json_decode function, (*11)
$noData - If you no set data set this property to true, (*12)
$sendToJsonFormat - Send to server with json format (add special header), (*13)
Simple class implement request with JSON body.
MIT
request request with json request json request with json body simple request