QA logo
Home | Projects and Goals | Release Candidates | How to Help | Handling Bug Reports | Test Reports | Manage Pull Requests


 
Go to the main PHP site
"; else $buffer .= ">"; if ($text!="") $buffer .= "$text"; else $buffer .= "$string"; $buffer .= ""; return $buffer; } function is_valid_php_version($version, $QA_RELEASES = array()) { if (isset($QA_RELEASES['reported']) && in_array($version, $QA_RELEASES['reported'])) { return true; } if (preg_match('@^\d{1}\.\d{1}\.\d{1,}(?:(?:RC|alpha|beta)\d{0,2})?(?:-dev)?$@i', $version)) { return true; } return false; }