apache_get_modules() 仅在 PHP 作为模块安装时可用,而不是作为 CGI == 它不适用于 php-fpm。
(PHP 4 >= 4.3.2, PHP 5, PHP 7, PHP 8)
apache_get_modules — 获取已加载的 Apache 模块列表
此函数没有参数。
一个包含已加载的 Apache 模块的 array。
示例 #1 apache_get_modules() 示例
<?php
print_r(apache_get_modules());
?>
上面的示例将输出类似于以下内容
Array ( [0] => core [1] => http_core [2] => mod_so [3] => sapi_apache2 [4] => mod_mime [5] => mod_rewrite )
<?php
function apache_module_exists($module)
{
return in_array($module, apache_get_modules());
}
?>
此函数可用于较旧的 PHP 版本,例如使用 "/etc/httpd/httpd.conf" 作为 $fname
<?php
function get_modules ($fname){
if (is_readable($fname)){
$fcont = file($fname);
if (is_array($fcont)){
foreach ($fcont as $line){
if (preg_match ("/^LoadModule\s*(\S*)\s*(\S*)/i",$line,$match)){
$return[$match[2]] = $match[1];
}
}
}
}
return $return;
}
?>
/**
* 检查 Apache 模块是否已加载(即使 php 作为 fcgi 或 cgi 运行)
*
* @param string $module
* @return bool
*/
public static function apache_check_module(string $module): bool
{
$module = ($module ? strval(value: $module) : '');
if (function_exists('apache_get_modules') && !empty($module)) {
if (in_array(needle: $module, haystack: apache_get_modules())) {
return TRUE;
}
} else if (!empty(shell_exec(command: 'apache2ctl -M | grep \'' . $module . '\''))) {
return TRUE;
} else {
return FALSE;
}
}
function apache_module_exists($module_name)
{
$modules = apache_get_modules();
return ( in_array($module_name, $modules) ? true : false );
}
var_dump(apache_module_exists('mod_headers'));
<?php
function apache_module_exists($module_name)
{
$modules = apache_get_modules();
foreach ($modules as $module)
{
if ($module == $module_name)
return true;
}
return false;
}
var_dump(apache_module_exists('mod_headers'));