3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Routes { var routes = []; #[{'route', 'ControllerName', 'ActionName'}, {...}, {...}] static function add($route, $controller, $action) { self::routes[] = array($route, $controller.'Controller', $action); } static function getRoutes() { return self::routes; } } Routes::add('/books', 'Books', 'index'); Routes::add('/books/:id', 'Books', 'show'); print_r(Routes::getRoutes());
Output for 5.4.0 - 5.4.30
Parse error: syntax error, unexpected 'routes' (T_STRING), expecting variable (T_VARIABLE) in /in/7Jgh6 on line 5
Process exited with code 255.
Output for 5.3.0 - 5.3.28
Parse error: syntax error, unexpected T_STRING, expecting T_VARIABLE in /in/7Jgh6 on line 5
Process exited with code 255.

preferences:
185.61 ms | 1399 KiB | 67 Q