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

search for in the

putenv> <phpinfo
[edit] Last updated: Fri, 23 Mar 2012

view this page in

phpversion

(PHP 4, PHP 5)

phpversionÇalışan PHP'nin sürümünü döndürür

Açıklama

string phpversion ([ string $eklenti ] )

Çalışan PHP'nin veya belirtilen eklentinin sürüm numarasını bir dizge olarak döndürür.

Değiştirgeler

eklenti

İsteğe bağlı bir eklenti ismi.

Dönen Değerler

İsteğe bağlı eklenti değiştirgesi belirtilmişse işlev bu eklentinin sürüm bilgisini döndürür. Eklenti ile ilgili bir sürüm bilgisi yoksa veya eklenti etkin değilse FALSE döner.

Örnekler

Örnek 1 - phpversion() örneği

<?php
// prints e.g. 'Current PHP version: 4.1.1'
echo 'Çalışan PHP\'nin sürümü: ' phpversion();

// eklenti etkinse '2.0' gibi bir değer basar
// eklenti etkin değilse hiçbir şey basılmaz
echo phpversion('tidy');
?>

Örnek 2 - PHP_VERSION_ID örneği

<?php
// PHP_VERSION_ID, PHP 5.2.7'den beri kullanılabilmektedir.
// Kullandığınız sürüm daha düşükse taklit edin
if(!defined('PHP_VERSION_ID'))
{
 
$version explode('.',PHP_VERSION);

 
define('PHP_VERSION_ID',
        (
$version[0] * 10000 $version[1] * 100 $version[2]));
}

// PHP_VERSION_ID bir sayı olarak tanımlanır. PHP sürümü yükseldikçe
// sayı büyür. Şu ifade ile tanımlanır:
//
// $version_id = $major_version * 10000 + $minor_version * 100 + $release_version;
//
// Artık PHP sürümlerinin özellikleri için PHP_VERSION_ID'ye bakabiliriz.
// Kullandığınız PHP sürümü bir özelliği desteklemezse version_compare()
// kullanmanız gerekmez. Örneğin 5.2.7 öncesi sürümlerden birini
// kullanıyorsanız PHP_VERSION_* sabitlerini şöyle tanımlayabilirsiniz:

if(PHP_VERSION_ID 50207)
{
 
define('PHP_MAJOR_VERSION',   $version[0]);
 
define('PHP_MINOR_VERSION',   $version[1]);
 
define('PHP_RELEASE_VERSION',   $version[2]);

 
// ve böyle gider, ...
}
?>

Notlar

Bilginize:

Bu bilgi ayrıca PHP_VERSION öntanımlı sabitinde de bulunur.

Ayrıca Bakınız

  • version_compare() - PHP standardına uygun hale getirilmiş iki sürüm numarası dizgesini karşılaştırır
  • phpinfo() - PHP'nin o anki durumu hakkında büyük miktarda bilgi çıktılar
  • phpcredits() - PHP'ya katkıda bulunanları gösterir
  • php_logo_guid() - PHP logo kimliğini döndürür
  • zend_version() - Zend motorunun sürümünü döndürür



putenv> <phpinfo
[edit] Last updated: Fri, 23 Mar 2012
 
add a note add a note User Contributed Notes phpversion
pavankumar at tutorvista dot com 28-Oct-2010 06: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 03: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 01: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 06: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 02: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(), '-'));
?>

 
show source | credits | stats | sitemap | contact | advertising | mirror sites