3v4l.org

run code in 300+ PHP versions simultaneously
<?php class IOException { protected $file; public function __construct($file, $message) { parent::__construct($message); $this->file = $file; } public function getFile() { return $this->file; } } class File { protected $path; protected $handle; public function __construct($path) { $this->path = $path; } public function open($mode) { $this->handle = @fopen($this->path, $mode); if (!$this->handle) { throw new IOException($this->path, "could not open the file"); } } } $file = new File("/no/file"); try { $file->open() } catch (IOException $io) { $io->printStackTrace(); } ?>
Output for 5.3.0 - 5.3.27, 5.4.0 - 5.4.22
Parse error: syntax error, unexpected '}' in /in/8UvRa on line 35
Process exited with code 255.

preferences:
190.52 ms | 1395 KiB | 58 Q