wp_timezone_supported

Definition:
function wp_timezone_supported() {}

Check for PHP timezone support

Defined filters

  • timezone_support
    apply_filters( 'timezone_support', $support )

Source code

function wp_timezone_supported() {

	$support = false;

	if (

		function_exists( 'date_create' ) &&

		function_exists( 'date_default_timezone_set' ) &&

		function_exists( 'timezone_identifiers_list' ) &&

		function_exists( 'timezone_open' ) &&

		function_exists( 'timezone_offset_get' )

	) {

		$support = true;

	}

	return apply_filters( 'timezone_support', $support );

}

4171

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: