php检测apache mod_rewrite模块是否安装入门实例
内容摘要
这篇文章主要为大家详细介绍了php检测apache mod_rewrite模块是否安装入门实例,具有一定的参考价值,可以用来参考一下。
对php检测apache mod_rewrite模块是否安装对此感兴趣
对php检测apache mod_rewrite模块是否安装对此感兴趣
文章正文
这篇文章主要为大家详细介绍了php检测apache mod_rewrite模块是否安装入门实例,具有一定的参考价值,可以用来参考一下。
对php检测apache mod_rewrite模块是否安装对此感兴趣的朋友,看看idc笔记做的技术笔记!
/**
* php检测apache mod_rewrite模块是否安装
*
* @param
* @arrange 512-笔记网: 512PiC.com
* @title Check if Apache's mod_rewrite is installed.
* @return boolean
*/
function isRewriteMod()
{
if (function_exists('apache_get_modules'))
{
$aMods = apache_get_modules();
$bIsRewrite = in_array('mod_rewrite', $aMods);
}
else
{
$bIsRewrite = (strtolower(getenv('HTTP_MOD_REWRITE')) == 'on');
}
return $bIsRewrite;
}
/*** 来自php教程(www.idcnote.com) ***/
使用方法
/**
* php检测apache mod_rewrite模块是否安装
*
* @param
* @arrange 512-笔记网: 512PiC.com
**/
if (!isRewriteMod()) exit('Please install Apache mod_rewrite module.');
/*** 来自php教程(www.idcnote.com) ***/
注:关于php检测apache mod_rewrite模块是否安装入门实例的内容就先介绍到这里,更多相关文章的可以留意
代码注释