3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Fizz { const KEYWORD = 'Fizz'; public static function match($index) { return !($index % 3); } } class Buzz { const KEYWORD = 'Buzz'; public static function match($index) { return !($index % 5); } } class FizzBuzzTest { public function printRange($from, $to) { for ($i = $from; $i <= $to; $i++) { $this->printFor($i); } } private function printFor($index) { if (Fizz::match($index)) { echo Fizz::KEYWORD; } if (Buzz::match($index)) { echo Buzz::KEYWORD; return; } echo $index; } } $test = new FizzBuzzTest; $test->printRange();
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught ArgumentCountError: Too few arguments to function FizzBuzzTest::printRange(), 0 passed in /in/UIlF2 on line 48 and exactly 2 expected in /in/UIlF2:25 Stack trace: #0 /in/UIlF2(48): FizzBuzzTest->printRange() #1 {main} thrown in /in/UIlF2 on line 25
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:
37.61 ms | 401 KiB | 8 Q