wp_is_php_version_acceptable, true, $version
wp_is_php_version_acceptable, true, $version
Appears in: 7.0.3
Hook Type: filter
Displaying hooks found in version: 7.0.3apply_filters('wp_is_php_version_acceptable, true, $version') is found 1 times:
- /wp-admin/includes/misc.php line 1625
*
* @param bool $is_acceptable Whether the PHP version is considered acceptable. Default true.
* @param string $version PHP version checked.
*/
$response[‘is_acceptable’] = (bool) apply_filters( ‘wp_is_php_version_acceptable’, true, $version );
}$response[‘is_lower_than_future_minimum’] = false;
// The minimum supported PHP version will be updated to at least 8.0 in the future. Check if the current version is lower.
if ( version_compare( $version, ‘8.0’, ‘<' ) ) { [/php]