Used By
Used By | Description |
---|---|
wp-admin/includes/class-wp-site-health.php: WP_Site_Health::get_test_php_extensions() | Test if required PHP modules are installed on the host. |
This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
Check if the passed extension or function are available.
Make the check for available PHP modules into a simple boolean operator for a cleaner test runner.
(string) (Optional) The extension name to test.
Default value: null
(string) (Optional) The function name to test.
Default value: null
(string) (Optional) The constant name to test for.
Default value: null
(string) (Optional) The class name to test for.
Default value: null
(bool) Whether or not the extension and function are available.
File: wp-admin/includes/class-wp-site-health.php
private function test_php_extension_availability( $extension = null, $function = null, $constant = null, $class = null ) { // If no extension or function is passed, claim to fail testing, as we have nothing to test against. if ( ! $extension && ! $function && ! $constant && ! $class ) { return false; } if ( $extension && ! extension_loaded( $extension ) ) { return false; } if ( $function && ! function_exists( $function ) ) { return false; } if ( $constant && ! defined( $constant ) ) { return false; } if ( $class && ! class_exists( $class ) ) { return false; } return true; }
Version | Description |
---|---|
5.3.0 | The $constant and $class parameters were added. |
5.2.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_site_health/test_php_extension_availability