PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

putenv> <phpinfo
Last updated: Fri, 22 Aug 2008

view this page in

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.



add a note add a note User Contributed Notes
phpversion
pl DOT baasch AT skycube DOT net
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(), '-'));
?>

putenv> <phpinfo
Last updated: Fri, 22 Aug 2008
 
 
show source | credits | sitemap | contact | advertising | mirror sites