3v4l.org

run code in 300+ PHP versions simultaneously
<?php declare(strict_types = 1); class CustomDateTimeImmutable extends DateTimeImmutable { public function test(): self { return CustomDateTimeImmutable::createFromInterface(new DateTime()); } public function fromFormat(): CustomDateTimeImmutable|false { return CustomDateTimeImmutable::createFromFormat('H:i:s', '00:00:00'); } } var_dump(get_class((new CustomDateTimeImmutable())->test())); //string(23) "CustomDateTimeImmutable" var_dump(get_class((new CustomDateTimeImmutable())->fromFormat())); //string(23) "CustomDateTimeImmutable"
Output for 8.0.1 - 8.0.30, 8.1.0 - 8.1.34, 8.2.0 - 8.2.30, 8.3.0 - 8.3.30, 8.4.1 - 8.4.18, 8.5.0 - 8.5.3
string(23) "CustomDateTimeImmutable" string(23) "CustomDateTimeImmutable"
Output for 7.4.0 - 7.4.33
Parse error: syntax error, unexpected '|', expecting ';' or '{' in /in/oBrlZ on line 12
Process exited with code 255.

preferences:
78.32 ms | 1259 KiB | 4 Q