3v4l.org

run code in 300+ PHP versions simultaneously
<?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);

preferences:
25.13 ms | 404 KiB | 5 Q