這篇文章主要介紹了php檢測apache mod_rewrite模組是否安裝的方法,透過對apache mod_rewrite模組相關函數的檢測實現該檢測功能,需要的朋友可以參考下
本文實例講述了php偵測apache mod_rewrite模組是否安裝的方法。
具體實作方法如下:
/** * @title Check if Apache's mod_rewrite is installed. * * @author Pierre-Henry Soria <ph7software@gmail.com> * @copyright (c) 2013, Pierre-Henry Soria. All Rights Reserved. * @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; }
使用方法:
if (!isRewriteMod()) exit('Please install Apache mod_rewrite module.');
總結:以上就是這篇文章的全部內容,希望能對大家的學習有所幫助。
相關推薦:
PHP實作簡單的GET、POST、Cookie、Session等功能
以上是簡述php如何偵測apache mod_rewrite模組是否安裝的詳細內容。更多資訊請關注PHP中文網其他相關文章!