3v4l.org

run code in 300+ PHP versions simultaneously
<?php trait CastableBehavior { public static function getFromContext($obj) { var_dump($obj, get_object_vars($obj)); $casted = new static; foreach (get_object_vars($obj) as $key => $value) { echo $key, '=>', $value, PHP_EOL; $casted->$key = $value; } return $casted; } } 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($user); } var_dump($admin);
Output for git.master, git.master_jit, rfc.property-hooks
object(User)#1 (3) { ["id":"User":private]=> int(2) ["name":"User":private]=> string(4) "John" ["type":"User":private]=> int(2) } array(0) { } object(Admin)#2 (3) { ["id":"Admin":private]=> NULL ["name":"Admin":private]=> NULL ["type":"Admin":private]=> NULL }

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.91 ms | 401 KiB | 8 Q