rest_is_boolean

Advertisement

Summery Summery

Determines if a given value is boolean-like.

Syntax Syntax

rest_is_boolean( bool|string $maybe_bool )

Parameters Parameters

$maybe_bool

(Required) The value being evaluated.

Return Return

(boolean) True if a boolean, otherwise false.

Source Source

File: wp-includes/rest-api.php

		return null;
	}

	/*
	 * At this point $date could either be a local date (if we were passed
	 * a *local* date without a timezone offset) or a UTC date (otherwise).
	 * Timezone conversion needs to be handled differently between these two cases.
	 */
	if ( ! $is_utc && ! $has_timezone ) {
		$local = gmdate( 'Y-m-d H:i:s', $date );
		$utc   = get_gmt_from_date( $local );
	} else {
		$utc   = gmdate( 'Y-m-d H:i:s', $date );
		$local = get_date_from_gmt( $utc );
	}

	return array( $local, $utc );
}

/**
 * Returns a contextual HTTP error code for authorization failure.
 *
 * @since 4.7.0
 *

Advertisement

Changelog Changelog

Changelog
Version Description
4.7.0 Introduced.

Advertisement

Leave a Reply