获取 PHP 版本

Sheeraz Gul 2024年2月15日
  1. 通过 PHP 检查 PHP 版本
  2. 在 PHP 中使用带参数(常量)的 phpinfo()
获取 PHP 版本

这篇短文将演示如何使用内置函数和常量来获取你的 PHP 版本。

通过 PHP 检查 PHP 版本

有两种方法可以获得准确的 PHP 版本,一种是内置函数,另一种是常量。

phpversion() 函数获取你安装的 PHP 的当前版本。

例子:

<?php
$version = phpversion();
echo "The PHP version is: ". $version;
echo "<br>";
echo "The PHP version is: ".PHP_VERSION;
?>

输出:

The PHP version is: 7.4.27
The PHP version is: 7.4.27

我们还可以使用 phpinfo() 从 PHP 信息文件中获取版本。

代码:

<?php
// Show all information which equals to phpinfo(INFO_ALL);
phpinfo();
?>

此代码将获取有关已安装 PHP 的所有信息。

安装的 PHP 信息

在 PHP 中使用带参数(常量)的 phpinfo()

phpinfo() 函数可以与相应的常量组合。

例子:

<?php
// Show the configuration line, the location of the php.ini file, the build date, the Web Server, the System, and more.
phpinfo(INFO_GENERAL);
?>

这是你也可以使用的以下常量的列表。

  1. INFO_ALL
  2. INFO_LICENSE
  3. INFO_VARIABLES
  4. INFO_ENVIRONMENT
  5. INFO_MODULES
  6. INFO_CONFIGURATION
  7. INFO_CREDITS

有关常量的更多信息,请单击此处

作者: Sheeraz Gul
Sheeraz Gul avatar Sheeraz Gul avatar

Sheeraz is a Doctorate fellow in Computer Science at Northwestern Polytechnical University, Xian, China. He has 7 years of Software Development experience in AI, Web, Database, and Desktop technologies. He writes tutorials in Java, PHP, Python, GoLang, R, etc., to help beginners learn the field of Computer Science.

LinkedIn Facebook

相关文章 - PHP Version