putenv> <phpinfo
Last updated: Fri, 03 Feb 2012

phpversion

(PHP 4, PHP 5)

phpversionObtém a versão atual do PHP

Descrição

string phpversion ([ string $extension ] )

Retorna uma string contendo a versão atual do interpretador PHP ou extensão.

Parâmetros

extension

Um opcional nome de extensão.

Valor Retornado

Se o parâmetro opcional extension é especificado, phpversion() retorna a versão desta extensão, ou FALSE se não há informação da versão ou a extensão não está habilitada.

Exemplos

Exemplo #1 Exemplo phpversion()

<?php
// mostra por exemplo 'Versão Atual do PHP: 4.1.1'
echo 'Versão Atual do PHP: ' phpversion();

// mostra e.g. '2.0' ou nada se a extensão não está habilitada
echo phpversion('tidy');
?>

Notas

Nota:

Esta informação está também disponível na constante pré-definida PHP_VERSION.

Veja Também



putenv> <phpinfo
Last updated: Fri, 03 Feb 2012
 
User Contributed Notes
phpversion
pavankumar at tutorvista dot com
28-Oct-2010 10:39
To know, what are the {php} extensions loaded & version of extensions :

<?php
foreach (get_loaded_extensions() as $i => $ext)
{
   echo
$ext .' => '. phpversion($ext). '<br/>';
}
?>
Sam Yong - hellclanner at live dot com
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
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 11: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
13-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(), '-'));
?>

putenv> <phpinfo
Last updated: Fri, 03 Feb 2012