Automattic\WooCommerce\Caching
ObjectCache::get_random_string
Get a random string to be used to compose the cache key prefix. It should return a different string each time.
Method of the class: ObjectCache{}
No Hooks.
Returns
String.
Usage
// protected - for code of main (parent) or child class $result = $this->get_random_string(): string;
ObjectCache::get_random_string() ObjectCache::get random string code WC 10.7.0
protected function get_random_string(): string {
return dechex( microtime( true ) * 1000 ) . bin2hex( random_bytes( 8 ) );
}