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]; } /* * Parse Filterstring */ 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); //remove final " OR " from filterstring else $returnVal = "type = 'VOID'"; //if everything is filtered, make sure to set type to something not available return $returnVal; }
Output for git.master, git.master_jit, rfc.property-hooks

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.82 ms | 401 KiB | 8 Q