3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Animal{ private $name; public function __construct($name){ $this->name = $name; } public function say($say_func=null){ $say_func = is_callable($say_func)? $say_func: function(){ var_dump('default',$this); }; $say_func(); return $say_func; } } $b = function(){ var_dump('custom',$this); }; $a = new Animal('bob'); $f= $a->say(); $a->say($b); $f();
Output for git.master, git.master_jit, rfc.property-hooks
string(7) "default" object(Animal)#2 (1) { ["name":"Animal":private]=> string(3) "bob" } Fatal error: Uncaught Error: Using $this when not in object context in /in/8AifB:21 Stack trace: #0 /in/8AifB(15): {closure}() #1 /in/8AifB(26): Animal->say(Object(Closure)) #2 {main} thrown in /in/8AifB on line 21
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:
51.88 ms | 401 KiB | 8 Q