PHP Classes

File: examples/usingArrays.php

Recommend this page to a friend!
  Classes of Mateo   PHP JSON Decoder into an Object   examples/usingArrays.php   Download  
File: examples/usingArrays.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP JSON Decoder into an Object
Decode JSON into an object of a given class
Author: By
Last change:
Date: 4 months ago
Size: 584 bytes
 

Contents

Class file image Download
<?php

use Mateodioev\Json\JSON;

require
__DIR__.'/../vendor/autoload.php';

class
User {
    public
int $id;
    public
string $name;
    public
string $username;
    public array
$products;
}

$rawJson = '{
    "id": 1,
    "name": "John Doe",
    "username": "johndoe",
    "products": [
        {
            "id": 1,
            "name": "Product 1",
            "price": 10.99
        },
        {
            "id": 2,
            "name": "Product 2",
            "price": 20.99
        }
    ]
}'
;

$u = new User;

try {
   
JSON::new($rawJson)->decode($u);
} catch (\
Mateodioev\Json\JsonDecodeException|ReflectionException $e) {
}
var_dump($u);