Utility function to build cache key for a given URL.
Parameters
$url
stringrequired- The URL for which to build a cache key.
Source
private function build_cache_key_for_url( $url ) {
return 'g_url_details_response_' . md5( $url );
}
Changelog
Version | Description |
---|---|
5.9.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.