3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Foo { static public function bar() { return __CLASS__; } public function get_cb() { return array( get_class( $this ), 'bar' ); } } class Other extends Foo { static public function bar() { return 'TooGood'; } } $o1 = new Foo(); $o2 = new Other(); var_dump( call_user_func( $o1->get_cb() ) ); var_dump( call_user_func( $o2->get_cb() ) );
Output for git.master, git.master_jit, rfc.property-hooks
string(3) "Foo" string(7) "TooGood"

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:
43.22 ms | 401 KiB | 8 Q