Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

phpversion(3) [php man page]

PHPVERSION(3)								 1							     PHPVERSION(3)

phpversion - Gets the current PHP version

SYNOPSIS
string phpversion ([string $extension]) DESCRIPTION
Returns a string containing the version of the currently running PHP parser or extension. PARAMETERS
o $extension - An optional extension name. RETURN VALUES
If 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. EXAMPLES
Example #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, ... } ?> NOTES
Note This information is also available in the predefined constant PHP_VERSION. More versioning information is available using the PHP_VERSION_* constants. SEE ALSO
PHP_VERSION constants, version_compare(3), phpinfo(3), phpcredits(3), php_logo_guid(3), zend_version(3). PHP Documentation Group PHPVERSION(3)

Check Out this Related Man Page

PHPINFO(3)								 1								PHPINFO(3)

phpinfo - Outputs information about PHP's configuration

SYNOPSIS
bool phpinfo ([int $what = INFO_ALL]) DESCRIPTION
Outputs a large amount of information about the current state of PHP. This includes information about PHP compilation options and exten- sions, the PHP version, server information and environment (if compiled as a module), the PHP environment, OS version information, paths, master and local values of configuration options, HTTP headers, and the PHP License. Because every system is setup differently, phpinfo(3) is commonly used to check configuration settings and for available predefined vari- ables on a given system. phpinfo(3) is also a valuable debugging tool as it contains all EGPCS (Environment, GET, POST, Cookie, Server) data. PARAMETERS
o $what - The output may be customized by passing one or more of the following constants bitwise values summed together in the optional $what parameter. One can also combine the respective constants or bitwise values together with the or operator. phpinfo(3) options +-------------------+--------------------------------------+---+ | Name (constant) | | | | | | | | | Value | | | | | | | | Description | | | | | | +-------------------+--------------------------------------+---+ | INFO_GENERAL | | | | | | | | | 1 | | | | | | | | The configuration line, php.ini | | | | location, build date, Web Server, | | | | System and more. | | | | | | | INFO_CREDITS | | | | | | | | | 2 | | | | | | | | PHP Credits. See also phpcred- | | | | its(3). | | | | | | |INFO_CONFIGURATION | | | | | | | | | 4 | | | | | | | | Current Local and Master values for | | | | PHP directives. See also ini_get(3). | | | | | | | INFO_MODULES | | | | | | | | | 8 | | | | | | | | Loaded modules and their respective | | | | settings. See also get_loaded_exten- | | | | sions(3). | | | | | | | INFO_ENVIRONMENT | | | | | | | | | 16 | | | | | | | | Environment Variable information | | | | that's also available in $_ENV. | | | | | | | INFO_VARIABLES | | | | | | | | | 32 | | | | | | | | Shows all predefined variables | | | | from EGPCS (Environment, GET, POST, | | | | Cookie, Server). | | | | | | | INFO_LICENSE | | | | | | | | | 64 | | | | | | | | PHP License information. See also | | | | the license FAQ. | | | | | | | INFO_ALL | | | | | | | | | -1 | | | | | | | | Shows all of the above. | | | | | | +-------------------+--------------------------------------+---+ RETURN VALUES
Returns TRUE on success or FALSE on failure. CHANGELOG
+--------+---------------------------------------------------+ |Version | | | | | | | Description | | | | +--------+---------------------------------------------------+ | 5.5.0 | | | | | | | Logo GUIDs were replaced with data URIs, and so | | | turning off expose_php now has no effect on the | | | result of phpinfo(). Credits are also now embed- | | | ded within the output itself instead of linked. | | | | | 5.2.2 | | | | | | | The "Loaded Configuration File" information was | | | added, when before only "Configuration File | | | (php.ini) Path" existed. | | | | +--------+---------------------------------------------------+ EXAMPLES
Example #1 phpinfo(3) Example <?php // Show all information, defaults to INFO_ALL phpinfo(); // Show just the module information. // phpinfo(8) yields identical results. phpinfo(INFO_MODULES); ?> NOTES
Note In versions of PHP before 5.5, parts of the information displayed are disabled when the expose_php configuration setting is set to off. This includes the PHP and Zend logos, and the credits. Note phpinfo(3) outputs plain text instead of HTML when using the CLI mode. SEE ALSO
phpversion(3), phpcredits(3), php_logo_guid(3), ini_get(3), ini_set(3), get_loaded_extensions(3), Predefined Variables. PHP Documentation Group PHPINFO(3)
Man Page