3v4l.org

run code in 300+ PHP versions simultaneously
<?php trait CastableBehavior { public static function getFromContext($obj) { foreach (get_object_vars($obj) as $key => $value) { $this->$key = $value; } } } interface UserTypes { const USER = 1; const ADMIN = 2; const MODERATOR = 3; } class User { private $id; private $name; private $type; public function __construct($id, $name, $type) { $this->id = $id; $this->name = $name; $this->type = $type; } public function getID() { return $this->id; } public function getName() { return $this->name; } public function getType() { return $this->type; } } class Admin { use CastableBehavior; private $id; private $name; private $type; } $user = new User(2, 'John', UserTypes::ADMIN); if ($user->getType() === UserTypes::ADMIN) { $admin = Admin::getFromContext($foo); } var_dump($admin);
Output for git.master, git.master_jit, rfc.property-hooks
Warning: Undefined variable $foo in /in/XXb4i on line 50 Fatal error: Uncaught TypeError: get_object_vars(): Argument #1 ($object) must be of type object, null given in /in/XXb4i:4 Stack trace: #0 /in/XXb4i(4): get_object_vars(NULL) #1 /in/XXb4i(50): Admin::getFromContext(NULL) #2 {main} thrown in /in/XXb4i on line 4
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:
41.82 ms | 401 KiB | 8 Q