获取Apache版本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取Apache版本相关的知识,希望对你有一定的参考价值。

Return just the Apache version number of your server, and operating system, from $_SERVER['SERVER_SOFTWARE']

Example:

print ('Apache Version: ' . apacheversion());

will return something along the lines of...

"Apache Version: 2.2.10 (Unix)"
  1. function apacheversion() {
  2. $ver = split("[/ ]",$_SERVER['SERVER_SOFTWARE']);
  3. $apver = "$ver[1] $ver[2]";
  4. return $apver;
  5. }

以上是关于获取Apache版本的主要内容,如果未能解决你的问题,请参考以下文章

环境初始化 Build and Install the Apache Thrift IDL Compiler Install the Platform Development Tools(代码片段

spark关于join后有重复列的问题(org.apache.spark.sql.AnalysisException: Reference '*' is ambiguous)(代码片段

如何管理在每个 git 版本中添加私有代码片段?

常用python日期日志获取内容循环的代码片段

Oracle 数据库 - 使用UEStudio修改dmp文件版本号,解决imp命令恢复的数据库与dmp本地文件版本号不匹配导致的导入失败问题,“ORACLE error 12547”问题处理(代码片段

从Snipplr获取一个代码片段