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
Fatal error: Constant expression contains invalid operations in /in/R5dMW on line 14
Process exited with code 255.
Output for 5.6.8 - 5.6.16
Warning: Unsupported declare 'strict_types' in /in/R5dMW on line 2 Parse error: syntax error, unexpected 'new' (T_NEW) in /in/R5dMW on line 14
Process exited with code 255.
Output for 5.5.24 - 5.5.30
Warning: Unsupported declare 'strict_types' in /in/R5dMW on line 2 Parse error: syntax error, unexpected '.', expecting '&' or variable (T_VARIABLE) in /in/R5dMW on line 6
Process exited with code 255.

preferences:
167.02 ms | 1395 KiB | 24 Q