1. Go to this page and download the library: Download dbeurive/slim-requester 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/ */
dbeurive / slim-requester example snippets
use Psr\Http\Message\ServerRequestInterface as Request;
use Psr\Http\Message\ResponseInterface as Response;
use dbeurive\Slim\Requester;
// Create your Slim application
$configuration = array(/* your configuration */);
$application = new \Slim\App($configuration);
$application->get('/get/{name}', function (Request $request, Response $response) {
$name = $request->getAttribute('name');
$response->getBody()->write("Hello, $name");
return $response;
});
$application->post('/post', function (Request $request, Response $response) {
$data = $request->getParsedBody();
$firstName = filter_var($data['firstname'], FILTER_SANITIZE_STRING);
$lastName = filter_var($data['lastname'], FILTER_SANITIZE_STRING);
$response->getBody()->write("Hello, $firstName $lastName");
return $response;
});
// Create the requester
$requester = new Requester($application);
// And then you can perform requests:
$text = $requester->get('/get/toto');
$parameters = ['firstname' => 'Mickey', 'lastname' => 'Mouse'];
$text = $requester->post('/post', $parameters);
$response = $requester->getResponse();
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.