Checking your PHP Version

Here's a simple test to find out if you're running PHP 5 or later. Modify it to suit your needs.

function isPhp5()
{
    if (version_compare("5.0.0", PHP_VERSION, ">="))
    {
        return TRUE;
    }
    return FALSE;
}

0
Your rating: None