3v4l.org

run code in 300+ PHP versions simultaneously
<?php class A { private $b; function __construct() { $this->b = new B; } function __call(string $method, $args) { $this->b->$method(...$args); } } class B { function work($p1, $p2, $p3) { var_dump($p1, $p2, $p3); } } (new B)->work(1, 2, 3); (new A)->work(4, 5, 6); (new A)->not();
Output for git.master, git.master_jit, rfc.property-hooks
int(1) int(2) int(3) int(4) int(5) int(6) Fatal error: Uncaught Error: Call to undefined method B::not() in /in/3tkZ6:6 Stack trace: #0 /in/3tkZ6(16): A->__call('not', Array) #1 {main} thrown in /in/3tkZ6 on line 6
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:
40.84 ms | 401 KiB | 8 Q