- json_decode: documentation ( source)
<?php
declare(strict_types=1);
final class Person
{
public function __construct(
public readonly string $first,
public readonly string $last
) {
}
}
$json = '{"first": "Cher"}';
$data = json_decode($json);
$person = new Person($data->first, $data->last);