3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Invokable { private $callCount = 0; public function __invoke() { $this->callCount++; return $this->callCount; } } class Example { private $invokable; public function __construct() { $this->invokable = new Invokable(); } public function getInvokable0() { $invokable = $this->invokable; return $invokable(); } public function getInvokable1() { return ($this->invokable)(); } public function getInvokable2() { return $this->invokable(); } } $eg = new Example(); printf("%d\n",$eg->getInvokable0()); printf("%d\n",$eg->getInvokable1()); printf("%d\n",$eg->getInvokable2());
Output for git.master, git.master_jit, rfc.property-hooks
1 2 Fatal error: Uncaught Error: Call to undefined method Example::invokable() in /in/Eo5BT:35 Stack trace: #0 /in/Eo5BT(42): Example->getInvokable2() #1 {main} thrown in /in/Eo5BT on line 35
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:
53.96 ms | 401 KiB | 8 Q