wpseek.com
A WordPress-centric search engine for devs and theme authors
apache_mod_loaded › WordPress Function
Since2.5.0
Deprecatedn/a
› apache_mod_loaded ( $mod, $default_value = false )
| Parameters: (2) |
|
| Returns: |
|
| Defined at: |
|
| Codex: |
Determines whether the specified module exist in the Apache config.
Related Functions: wp_cache_add, wp_cache_close, wp_auth_check_load, wp_cache_set_salted, wp_cache_get_salted
Source
function apache_mod_loaded( $mod, $default_value = false ) {
global $is_apache;
if ( ! $is_apache ) {
return false;
}
$loaded_mods = array();
if ( function_exists( 'apache_get_modules' ) ) {
$loaded_mods = apache_get_modules();
if ( in_array( $mod, $loaded_mods, true ) ) {
return true;
}
}
if ( empty( $loaded_mods )
&& function_exists( 'phpinfo' )
&& ! str_contains( ini_get( 'disable_functions' ), 'phpinfo' )
) {
ob_start();
phpinfo( INFO_MODULES );
$phpinfo = ob_get_clean();
if ( str_contains( $phpinfo, $mod ) ) {
return true;
}
}
return $default_value;
}