3v4l.org

run code in 300+ PHP versions simultaneously
<?php declare(strict_types=1) class Enum { public function __construct(string ...$params) { var_dump($params); } } class Struct { const STATUS = new Enum('NEW', 'OCCUPIED', 'RESERVED'); public function getStatusEnum() { return static::STATUS; } }
Output for 7.0.0
Parse error: syntax error, unexpected 'class' (T_CLASS) in /in/OENtO on line 4
Process exited with code 255.
Output for 5.5.24 - 5.5.30, 5.6.8 - 5.6.16
Warning: Unsupported declare 'strict_types' in /in/OENtO on line 2 Parse error: syntax error, unexpected 'class' (T_CLASS) in /in/OENtO on line 4
Process exited with code 255.

preferences:
163.61 ms | 1387 KiB | 24 Q