返回介绍

apache_mod_loaded()

发布于 2017-09-10 21:29:19 字数 1672 浏览 1377 评论 0 收藏 0

apache_mod_loaded( string $mod,  bool $default = false )

Does the specified module exist in the Apache config?


description


参数

$mod

(string) (Required) The module, e.g. mod_rewrite.

$default

(bool) (Optional) The default return value if the module is not found.

Default value: false


返回值

(bool) Whether the specified module is loaded.


源代码

File: wp-includes/functions.php

function apache_mod_loaded($mod, $default = false) {
	global $is_apache;

	if ( !$is_apache )
		return false;

	if ( function_exists( 'apache_get_modules' ) ) {
		$mods = apache_get_modules();
		if ( in_array($mod, $mods) )
			return true;
	} elseif ( function_exists( 'phpinfo' ) && false === strpos( ini_get( 'disable_functions' ), 'phpinfo' ) ) {
			ob_start();
			phpinfo(8);
			$phpinfo = ob_get_clean();
			if ( false !== strpos($phpinfo, $mod) )
				return true;
	}
	return $default;
}

更新日志

Versiondescription
2.5.0Introduced.

相关函数

Used By

  • wp-admin/includes/network.php: network_step1()
  • wp-admin/includes/misc.php: got_mod_rewrite()

User Contributed Notes

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文