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(); } } $eg = new Example(); printf("%d\n",$eg->getInvokable0());

preferences:
47.68 ms | 402 KiB | 5 Q