The version 4.3.10-16 does not "respect" the requiement for the above code. Use this fuction.
sample call:
if(!check_version(PHP_VERSION, "4.1.0") )
{
echo 'Current PHP version: ' . PHP_VERSION . ' is too low for this code!<p>';
}
Function:
# Compares versions of software
# versions must must use the format ' x.y.z... '
# where (x, y, z) are numbers in [0-9]
function check_version($currentversion, $requiredversion)
{
list($majorC, $minorC, $editC) = split('[/.-]', $currentversion);
list($majorR, $minorR, $editR) = split('[/.-]', $requiredversion);
if ($majorC > $majorR) return true;
if ($majorC < $majorR) return false;
// same major - check ninor
if ($minorC > $minorR) return true;
if ($minorC < $minorR) return false;
// and same minor
if ($editC >= $editR) return true;
return false;
}