To know, what are the {php} extensions loaded & version of extensions :
<?php
foreach (get_loaded_extensions() as $i => $ext)
{
echo $ext .' => '. phpversion($ext). '<br/>';
}
?>
phpversion
(PHP 4, PHP 5)
phpversion — Liefert die aktuelle PHP-Version
Beschreibung
string phpversion
([ string
$extension
] )
Liefert die Versionsnummer der gerade laufenden PHP-Version oder
der angegebenen extension als String.
Parameter-Liste
-
extension -
Ein optionaler Extensionname
Rückgabewerte
Wenn der optionale Parameter extension
angegeben wurde, wird die Versionsnummer dieser Extension zurückgegeben
oder FALSE, falls die Extension nicht geladen ist oder keine
Versionsinformation enthält.
Beispiele
Beispiel #1 phpversion()-Beispiel
<?php
// gibt z.B. 'Die aktuelle PHP-Version ist 4.1.1' aus
echo 'Die aktuelle PHP Version ist ' . phpversion();
// Gibt z.B. '2.0' aus oder nichts, falls die Extension nicht aktiviert ist
echo phpversion('tidy');
?>
Anmerkungen
Hinweis:
Die PHP Version kann auch über die vordefinierte Konstante
PHP_VERSIONermittelt werden.
Siehe auch
- version_compare() - Vergleicht zwei Versionsnummern im PHP-Stil
- phpinfo() - Gibt Informationen zur PHP-Konfiguration aus
- phpcredits() - Prints out the credits for PHP
- php_logo_guid() - Die GUID des PHP-Logos
- zend_version() - Liefert die aktuelle Version der Zend Engine
pavankumar at tutorvista dot com ¶
2 years ago
bitworks at web dot de ¶
3 years ago
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
}
?>
cHao ¶
11 days ago
If you're trying to check whether the version of PHP you're running on is sufficient, don't screw around with `strcasecmp` etc. PHP already has a `version_compare` function, and it's specifically made to compare PHP-style version strings.
<?php
if (version_compare(phpversion(), '5.3.10', '<')) {
// php version isn't high enough
}
?>
Sam Yong - hellclanner at live dot com ¶
3 years ago
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) ''.
dmitry DOT seredinov AT gmail DOT com ¶
4 years ago
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 ¶
4 years ago
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(), '-'));
?>
