3v4l.org

run code in 500+ 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);
Output for 8.5.0 - 8.5.3
Warning: Undefined property: stdClass::$last in /in/JoNLT on line 17 Fatal error: Uncaught TypeError: Person::__construct(): Argument #2 ($last) must be of type string, null given, called in /in/JoNLT on line 17 and defined in /in/JoNLT:9 Stack trace: #0 /in/JoNLT(17): Person->__construct('Cher', NULL) #1 {main} thrown in /in/JoNLT on line 9
Process exited with code 255.
Output for 8.1.32 - 8.1.34, 8.2.0 - 8.2.30, 8.3.0 - 8.3.30, 8.4.1 - 8.4.18
Warning: Undefined property: stdClass::$last in /in/JoNLT on line 17 Fatal error: Uncaught TypeError: Person::__construct(): Argument #2 ($last) must be of type string, null given, called in /in/JoNLT on line 17 and defined in /in/JoNLT:7 Stack trace: #0 /in/JoNLT(17): Person->__construct('Cher', NULL) #1 {main} thrown in /in/JoNLT on line 7
Process exited with code 255.

preferences:
52.56 ms | 870 KiB | 4 Q