3v4l.org

run code in 300+ PHP versions simultaneously
<?php class C { private function f() { echo "hello"; } public function fn(): callable { return [$this, 'f']; } } $c = new C(); $f = $c->fn(); $f();
Output for 8.3.0 - 8.3.30, 8.4.1 - 8.4.18, 8.5.0 - 8.5.3
Fatal error: Uncaught Error: Call to private method C::f() from global scope in /in/hCpiG:10 Stack trace: #0 {main} thrown in /in/hCpiG on line 10
Process exited with code 255.

preferences:
47.68 ms | 710 KiB | 4 Q