Warning: This function has been deprecated.

bp_core_admin_is_running_php53_or_greater()

Determines whether the current installation is running PHP 5.3 or greater.


Description Description

BuddyPress 2.8 introduces a minimum PHP requirement of PHP 5.3.


Return Return

(bool)


Top ↑

Source Source

File: bp-core/deprecated/2.8.php

function bp_core_admin_is_running_php53_or_greater() {
	_deprecated_function( __FUNCTION__, '2.8' );
	return version_compare( PHP_VERSION, '5.3', '>=' );
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.8.0 This function has been deprecated.
2.7.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.