3v4l.org

run code in 300+ PHP versions simultaneously
<?php /* * Get Full Filter Name from Abbreviation */ function getFilterName($filterAbbreviation) { $filters = array( "R" => "Restuarant", "B" => "Bar", "S" => "Store", "L" => "Lodging", "Q" => "Recreation", "G" => "Gas Station", "E" => "Entertainment", "C" => "Club" ); return $filters[$filterAbbreviation]; } function parseFilterString($filterString) { $returnVal = ""; $filterLetters = str_split($filterString, 1);    for($x = 0; $x < strlen($filterString); $x++) {        $returnVal .= "(type <=> '" . getFilterName($filterLetters[$x]) . "') OR ";    }     if (strlen($returnVal) > 0) $returnVal =  substr($returnVal,0,-4); else $returnVal = "type = 'VOID'"; return $returnVal; } ?>
Output for 5.4.0 - 5.4.9
Parse error: syntax error, unexpected ' for' (T_STRING) in JgteH on line 22
Process exited with code 255.
Output for 5.3.0 - 5.3.19
Parse error: syntax error, unexpected T_STRING in JgteH on line 22
Process exited with code 255.

preferences:
181.56 ms | 1395 KiB | 37 Q