apache_mod_loaded()函数是Wordpress函数,Apache配置中是否存在指定的模块?
apache_mod_loaded( string $mod, bool $default = false )
Apache配置中是否存在指定的模块?
Does the specified module exist in the Apache config?
参数(Parameters)
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| $mod | (string) | 必需 | 模块,例如mod_rewrite。 |
| $default | (bool) | 可选 | 如果找不到模块,则返回默认值。 |
返回(Return)
(bool)是否加载了指定的模块。
源码(Source)
//暂无
| 更新版本 | 源码位置 | 使用 | 被使用 |
|---|---|---|---|
| 2.5.0 | wp-includes/functions.php:5218 | 2 | 0 |





















