PHP code example of erykai / response

1. Go to this page and download the library: Download erykai/response 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/ */

    

erykai / response example snippets


use Erykai\Response\Response;
$data = new stdClass();
$data->code = 200;
$data->type = 'success';
$data->message = "hello my name is alex vidal and my email is [email protected]";
$data->data = null;
$data->dynamic = "[email protected]";

echo $response->data($data)->json();
print_r($response->data($data)->array());
print_r($response->data($data)->object());