3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Str{ private static $test = 'tst'; static function quicksort($str,){ $rtnString = ""; //return $rtnString; return $test; } } $string = "873694512"; $strObj = new Str(); echo($strObj->quicksort($string));
Output for 8.1.23 - 8.1.27, 8.2.10 - 8.2.17, 8.3.0 - 8.3.4
Warning: Undefined variable $test in /in/Eq69t on line 10
Output for 5.4.0 - 5.4.30
Parse error: syntax error, unexpected ')', expecting '&' or variable (T_VARIABLE) in /in/Eq69t on line 5
Process exited with code 255.
Output for 5.3.0 - 5.3.28
Parse error: syntax error, unexpected ')', expecting '&' or T_VARIABLE in /in/Eq69t on line 5
Process exited with code 255.

preferences:
97.02 ms | 401 KiB | 83 Q