"/projects.php", "text" => "Goals"], ["href" => "/rc.php", "text" => "What is RC?"], ["href" => "/howtohelp.php", "text" => "Contributing"], ["href" => "/handling-bugs.php", "text" => "Handling Reports"], ["href" => "/reports/", "text" => "Reports"], ]; include __DIR__ . "/../shared/templates/header.inc"; echo '
'; } function common_footer($JS = []) { echo "
"; include __DIR__ . "/../shared/templates/footer.inc"; } function is_valid_php_version($version, $QA_RELEASES = []) { 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; }