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(); } } $b = function(){ var_dump('custom',$this); }; $a = new Animal('bob'); $a->say(); $a->say($b);
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/hhv1t:20 Stack trace: #0 /in/hhv1t(15): {closure}() #1 /in/hhv1t(25): Animal->say(Object(Closure)) #2 {main} thrown in /in/hhv1t on line 20
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:
44.94 ms | 401 KiB | 8 Q