wpsc_is_get_query()WPSCache 1.0

No Hooks.

Returns

null. Nothing (null).

Usage

wpsc_is_get_query();

wpsc_is_get_query() code WPSCache 2.0.1

function wpsc_is_get_query() {
	static $is_get_query = null;

	if ( null === $is_get_query ) {
		$request_uri  = wpsc_parse_partial_url( $_SERVER['REQUEST_URI'] );
		$is_get_query = $request_uri && ! empty( $request_uri['query'] );
	}

	return $is_get_query;
}