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 = false )
Parameters: (2) |
|
Returns: |
|
Defined at: |
|
Codex: |
Does the specified module exist in the Apache config?
Related Functions: wp_cache_add, wp_cache_close, wp_auth_check_load, rest_api_loaded, wp_is_file_mod_allowed
Source
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; }