3v4l.org

run code in 300+ PHP versions simultaneously
<?php function foo(int $x, int $a, int $b = 2) { var_dump($x, $a, $b); } $rf = new ReflectionFunction("foo"); $rf->invokeArgs([1 => 0, 0 => 1, "b" => 6]); class Foo { public function __construct(int $x, int $a, int $b = 2) { var_dump($x, $a, $b); } public function method(int $x, int $a, int $b = 2) { var_dump($x, $a, $b); } } $rc = new ReflectionClass(Foo::class); $instance = $rc->newInstanceArgs([1 => 0, 0 => 1, "b" => 6]); $rc->getMethod("method")->invokeArgs($instance, [1 => 0, 0 => 1, "b" => 6]);
Output for git.master, git.master_jit, rfc.property-hooks
int(0) int(1) int(6) int(0) int(1) int(6) int(0) int(1) int(6)

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:
38.69 ms | 405 KiB | 5 Q