PHP code example of aktuba / json-mapper

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

    

aktuba / json-mapper example snippets


 declare(strict_types=1);

use aktuba\JsonMapper\JsonMapper;

ame": "Smith",
			"age": 24
		},
		{
			"name": "Marry",
			"surname": "Cary",
			"age": 22
		}
	],
	"meta": {
		"result": true,
		"version": "1.0",
		"took": "0.035"
	}
}
JSON;

class User extends JsonMapper
{

	protected const PROPERTIES = [
		'name' => 'string',
		'surname' => 'string',
		'age' => 'int',
	];

}

class Meta extends JsonMapper
{

	protected const PROPERTIES = [
		'result' => 'bool',
		'version' => 'string',
		'took' => 'float',
	];

}

class Data extends JsonMapper
{

	protected const PROPERTIES = [
		'users' => 'User[]',
		'meta' => 'Meta',
	];

}

$data = new Data(json_decode($jsonData, true));
var_dump($data);