Function for easy check minimum version of PHP
<?php
function phpMinV($v)
{
$phpV = PHP_VERSION;
if ($phpV[0] >= $v[0]) {
if (empty($v[2]) || $v[2] == '*') {
return true;
} elseif ($phpV[2] >= $v[2]) {
if (empty($v[4]) || $v[4] == '*' || $phpV[4] >= $v[4]) {
return true;
}
}
}
return false;
}
/* ---- Newer than 4 ---- */
if (phpMinV('4')) {
// .....
}
// or
if (phpMinV('4.*')) {
// .....
}
/* ---- Newer than 5.1 ---- */
if (phpMinV('5.1')) {
// .....
}
// or
if (phpMinV('5.1.*')) {
// .....
}
/* ---- Newer than 5.2.3 ---- */
if (phpMinV('5.2.3')) {
// .....
}
?>
phpversion
(PHP 4, PHP 5)
phpversion — Gets the current PHP version
Description
string phpversion
([ string $extension
] )
Returns a string containing the version of the currently running PHP parser or extension.
Parameters
- extension
-
An optional extension name.
Return Values
If the optional extension parameter is specified, phpversion() returns the version of that extension, or FALSE if there is no version information associated or the extension isn't enabled.
Voorbeelden
Example#1 phpversion() example
<?php
// prints e.g. 'Current PHP version: 4.1.1'
echo 'Current PHP version: ' . phpversion();
// prints e.g. '2.0' or nothing if the extension isn't enabled
echo phpversion('tidy');
?>
Notes
Note: This information is also available in the predefined constant PHP_VERSION.
phpversion
Cyrus Hirvi
31-Aug-2009 04:15
31-Aug-2009 04:15
Sam Yong - hellclanner at live dot com
28-Aug-2009 06:48
28-Aug-2009 06:48
Take note that if you pass phpversion() with an empty string, eg.
<?php
echo phpversion('');
?>
It will not return anything, since it cannot find an extension with the name string(0) ''.
bitworks at web dot de
26-Jun-2009 04:31
26-Jun-2009 04:31
to realize if the actual version ist newer than '5.2.10'
simply use:
<?php
if (strnatcmp(phpversion(),'5.2.10') >= 0)
{
# equal or newer
}
else
{
# not sufficiant
}
?>
dmitry DOT seredinov AT gmail DOT com
10-Jan-2009 10:50
10-Jan-2009 10:50
To simple receive a major PHP version value (e.g., 5.2), you can use next:
<?php
// Output below will looks like '5.2', depends to your version
echo floatval(phpversion());
?>
pl DOT baasch AT skycube DOT net
14-Jul-2008 05:17
14-Jul-2008 05:17
In a addition to phpversion,..
if you've got a system like ubuntu or some else, you get
<?php
echo phpversion(); // 5.2.4-2ubuntu5.2
?>
To fix this, use the following:
<?php
echo substr(phpversion(),0,strpos(phpversion(), '-'));
?>
