3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Dynamic extends stdClass{ public function __call($key,$params){ if(!isset($this->{$key})) throw new Exception("Call to undefined method ".get_class($this)."::".$key."()"); $subject = $this->{$key}; call_user_func_array($subject,$params); } } $dynamic->myMethod = "thatFunction"; $dynamic->hisMethod = array($instance,"aMethod"); $dynamic->newMethod = array(SomeClass,"staticMethod"); $dynamic->anotherMethod = function(){ echo "Hey there"; };
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught Error: Attempt to assign property "myMethod" on null in /in/F6D88:9 Stack trace: #0 {main} thrown in /in/F6D88 on line 9
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.9 ms | 401 KiB | 8 Q