PHP Check PHP Version - Web Tool
Use this web tool to check if the current PHP version is equal to or greater than a specified value.
function isPHP($version)
{
static $_isPHP;
$version = (string) $version;
if (!isset($_isPHP[$version])) {
$_isPHP[$version] = version_compare(PHP_VERSION, $version, '>=');
}
return $_isPHP[$version];
}