3v4l.org

run code in 300+ PHP versions simultaneously
<?php class DummyClass {private $value = 1;} // Before PHP 7 $getValueCallBack = function() {return $this->value;}; $getValue = $getValueCallBack->bindTo(new DummyClass, 'DummyClass'); echo $getValue(); // From PHP 7 $getvalue = function() {return $this->value;}; echo $getValue->call(new DummyClass);

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
97.28 ms | 2388 KiB | 4 Q