3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Foo { protected $mything; public function __construct($mything) { $this->mything = $mything; } public function doStuff($a) { return $a; } public static function doStaticStuff($a) { return $a; } } $foo = new Foo(range('A', 'Z')); var_dump(serialize(array($foo, 'doStuff'))); var_dump(serialize(array('Foo', 'doStaticStuff'))); $method = 'doStuff'; $foo->$method('bar');
Output for git.master, git.master_jit, rfc.property-hooks
string(395) "a:2:{i:0;O:3:"Foo":1:{s:10:"*mything";a:26:{i:0;s:1:"A";i:1;s:1:"B";i:2;s:1:"C";i:3;s:1:"D";i:4;s:1:"E";i:5;s:1:"F";i:6;s:1:"G";i:7;s:1:"H";i:8;s:1:"I";i:9;s:1:"J";i:10;s:1:"K";i:11;s:1:"L";i:12;s:1:"M";i:13;s:1:"N";i:14;s:1:"O";i:15;s:1:"P";i:16;s:1:"Q";i:17;s:1:"R";i:18;s:1:"S";i:19;s:1:"T";i:20;s:1:"U";i:21;s:1:"V";i:22;s:1:"W";i:23;s:1:"X";i:24;s:1:"Y";i:25;s:1:"Z";}}i:1;s:7:"doStuff";}" string(45) "a:2:{i:0;s:3:"Foo";i:1;s:13:"doStaticStuff";}"

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:
47.11 ms | 402 KiB | 8 Q