3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Item { private static $cost = 100; public function getTotal($discount = 7) { return self::cost * $discount/(100+$discount); } } class Hydrator { public function getPrivate($obj, $attribute) { $getter = function() use ($attribute) {return $self::$attribute;}; return \Closure::bind($getter, $obj, get_class($obj)); } public function setPrivate($obj, $attribute) { $setter = function($value) use ($attribute) {$self::$attribute = $value;}; return \Closure::bind($setter, $obj, get_class($obj)); } } $obj = new Item(); $hydrated = new Hydrator(); $getFoo = $hydrated->getPrivate($obj, 'cost'); $setFoo = $hydrated->setPrivate($obj, 'cost'); echo $obj->getTotal() .PHP_EOL; $setFoo(1); echo $obj->getTotal() .PHP_EOL;
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught Error: Undefined constant Item::cost in /in/BZ8Ai:7 Stack trace: #0 /in/BZ8Ai(30): Item->getTotal() #1 {main} thrown in /in/BZ8Ai on line 7
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:
62.92 ms | 401 KiB | 8 Q