Query: phpversion
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
PHPVERSION(3) 1 PHPVERSION(3) phpversion - Gets the current PHP versionSYNOPSISstring phpversion ([string $extension])DESCRIPTIONReturns a string containing the version of the currently running PHP parser or extension.PARAMETERSo $extension - An optional extension name.RETURN VALUESIf the optional $extension parameter is specified, phpversion(3) returns the version of that extension, or FALSE if there is no version information associated or the extension isn't enabled.EXAMPLESExample #1 phpversion(3) 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'); ?> Example #2 PHP_VERSION_ID example and usage <?php // PHP_VERSION_ID is available as of PHP 5.2.7, if our // version is lower than that, then emulate it if (!defined('PHP_VERSION_ID')) { $version = explode('.', PHP_VERSION); define('PHP_VERSION_ID', ($version[0] * 10000 + $version[1] * 100 + $version[2])); } // PHP_VERSION_ID is defined as a number, where the higher the number // is, the newer a PHP version is used. It's defined as used in the above // expression: // // $version_id = $major_version * 10000 + $minor_version * 100 + $release_version; // // Now with PHP_VERSION_ID we can check for features this PHP version // may have, this doesn't require to use version_compare() everytime // you check if the current PHP version may not support a feature. // // For example, we may here define the PHP_VERSION_* constants thats // not available in versions prior to 5.2.7 if (PHP_VERSION_ID < 50207) { define('PHP_MAJOR_VERSION', $version[0]); define('PHP_MINOR_VERSION', $version[1]); define('PHP_RELEASE_VERSION', $version[2]); // and so on, ... } ?>NOTESNote This information is also available in the predefined constant PHP_VERSION. More versioning information is available using the PHP_VERSION_* constants.SEE ALSOPHP_VERSION constants, version_compare(3), phpinfo(3), phpcredits(3), php_logo_guid(3), zend_version(3). PHP Documentation Group PHPVERSION(3)
Related Man Pages |
---|
php-config(1) - debian |
phpversion(3) - php |
imagettfbbox(3) - php |
phpcredits(3) - php |
version_compare(3) - php |
Similar Topics in the Unix Linux Community |
---|
How do i check whether a file has extension? |
PHP AJAX 1.0 (Default branch) |
PHPlot 5.0.5 (stable branch) |
P4A 2.99.4 (Development branch) |
Current PHP Code for UIM |