3v4l.org

run code in 300+ PHP versions simultaneously
<?php namespace CHH; use Symfony\Component\HttpKernel\HttpKernelInterface; use Symfony\Component\HttpFoundation\Request; /** * URL Map Middleware, which maps kernels to paths * * Maps kernels to path prefixes and is insertable into a stack. * * @author Christoph Hochstrasser <christoph.hochstrasser@gmail.com> */ class UrlMap implements HttpKernelInterface { protected $map = array(); protected $app; function __construct(HttpKernelInterface $app, array $map = array()) { $this->app = $app; if ($map) { $this->setMap($map); } } function setMap(array $map) { # Collect an array of all key lengths $lengths = array_map('strlen', array_keys($map)); # Sort paths by their length descending, so the most specific # paths go first. `array_multisort` sorts the lengths descending and # uses the order on the $map array_multisort($lengths, SORT_DESC, $map); $this->map = $map; } function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true) { foreach ($this->map as $path => $app) { if (strpos(rawurldecode($request->getPathInfo()), $path) === 0) { $server = array( 'SCRIPT_NAME' => rtrim($path, '/') . '/' . $request->server->get('SCRIPT_NAME') ); $subRequest = $request->duplicate(null, null, null, null, null, $server); return $app->handle($subRequest, $type, $catch); } } return $this->app->handle($request, $type, $catch); } }
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Fatal error: Uncaught Error: Interface "Symfony\Component\HttpKernel\HttpKernelInterface" not found in /in/9SuWM:15 Stack trace: #0 {main} thrown in /in/9SuWM on line 15
Process exited with code 255.
Output for 7.4.0 - 7.4.33
Fatal error: Uncaught Error: Interface 'Symfony\Component\HttpKernel\HttpKernelInterface' not found in /in/9SuWM:15 Stack trace: #0 {main} thrown in /in/9SuWM on line 15
Process exited with code 255.
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.25, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33
Fatal error: Interface 'Symfony\Component\HttpKernel\HttpKernelInterface' not found in /in/9SuWM on line 15
Process exited with code 255.
Output for 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.24 - 5.5.35, 5.6.7 - 5.6.28
Fatal error: Interface 'Symfony\Component\HttpKernel\HttpKernelInterface' not found in /in/9SuWM on line 16
Process exited with code 255.
Output for 4.4.2 - 4.4.9, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17
Parse error: syntax error, unexpected T_STRING in /in/9SuWM on line 3
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1, 5.0.0 - 5.0.5
Parse error: parse error, unexpected T_STRING in /in/9SuWM on line 3
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error in /in/9SuWM on line 3
Process exited with code 255.

preferences:
206.7 ms | 401 KiB | 331 Q