apache_get_modules

(PHP 4 >= 4.3.2, PHP 5, PHP 7, PHP 8)

apache_get_modules获取已加载的 Apache 模块列表

描述

apache_get_modules(): array

获取已加载的 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
)

添加注释

用户贡献的注释 6 个注释

hello at octopuslabs dot io
4 年前
apache_get_modules() 仅在 PHP 作为模块安装时可用,而不是作为 CGI == 它不适用于 php-fpm。
匿名
10 年前
<?php
function apache_module_exists($module)
{
return
in_array($module, apache_get_modules());
}
?>
Vlad Alexa Mancini mancini at nextcode dot org
19 年前
此函数可用于较旧的 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;
}

?>
christian at zp1 dot net
6 个月前
/**
* 检查 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;
}
}
匿名
10 年前
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'));
fengdingbo at gmail dot com
11 年前
<?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'));
To Top