3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Authenticator { protected $isloggedin; protected $session; public function __construct(Session $session) { $this->session = $session; // if ( ! empty($session->get('isloggedin')) && $session->get('isloggedin') == true) { $isl = $session->get('isloggedin'); if ( ! empty($isl) && $isl == true) { $this->isloggedin = true; } $uid = $session->get('userid'); if ( ! empty($uid) && (int) $uid == $uid ) { $this->userid = (int) $uid; } } public function authenticate($username, $password) { if ($this->isloggedin) return true; if ( empty($username)) return false; if ( empty($password)) return false; // ... return false; } public function logout() { $this->isloggedin = false; $this->userid = 0; $this->session->del('isloggedin'); $this->session->del('userid'); } public function isloggedin() { return $this->isloggedin; } } interface Session { public function set($key, $val=true); public function del($key, $val=false); public function get($key); } class BasicSession implements Session { protected $session = array(); public function __construct(array $s) { if ( ! session_start() ) { throw new Exception('Could not initiate web session'); } $this->session = $_SESSION; } public function set($key, $val=true) { $this->session[$key] = $val; } public function del($key, $val=false) { if (isset($this->session[$key])) { $this->session[$key] = $val; unset($this->session[$key]); } } public function get($key) { if (isset($this->session[$key])) { return $this->session[$key]; } return false; } } try { $sess = new BasicSession(); $auth = new Authenticator($sess); } catch (Exception $e) { die('System go KA-BOOM! ' . $e->getMessage()); }
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught ArgumentCountError: Too few arguments to function BasicSession::__construct(), 0 passed in /in/bYL44 on line 88 and exactly 1 expected in /in/bYL44:60 Stack trace: #0 /in/bYL44(88): BasicSession->__construct() #1 {main} thrown in /in/bYL44 on line 60
Process exited with code 255.

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
44.26 ms | 401 KiB | 8 Q