PHP code example of saad / json-response-builder

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

    

saad / json-response-builder example snippets

 php
		
		$builder = new Saad\JsonResponseBuilder\JsonResponseBuilder();
		
		$builder->mergeData([
			['name' => 'Ahmed Saad'],
			['name' => 'John Doe']
		]);
		
		$builder->addMeta([
			'pagination' => [
				'page' => 1,
				'per_page' => 4,
			]
		]);
		
		return $builder->getResponse();
		
	
 php
> 	$builder->mergeData(['ahmed', 'mohamed', 'meta' => ['key' => 'Iam Meta']]);
>
> 	// Output will be 
> 
> 	{
>	 	"success": true,
>	 	"meta": {
>	 		"key": "Iam Meta"
>	 	},	
>		"data": [
>			"ahmed",
>			"mohamed"
>		],
>		"message": "Successfully Retrieved"
>	}
>		 
> 
 php
> 	$builder->error('Fails!', 2345);
>
> 	// Output will be 
> 
> 	{
>	 	"success": false,
>	 	"meta": null,	
>		"data": null,
>		'error': {
>			"message": "Fails!",
>			"code": 2345
>		}
>		"message": "Fails!"
>	}


### `addError($key, mixed $value)`

> 	Add key to error array
> 
>