private static function OAuthRequest::generate_nonce in OAuth 1.0 6
Same name and namespace in other branches
- 6.3 lib/OAuth.php \OAuthRequest::generate_nonce()
- 7.3 lib/OAuth.php \OAuthRequest::generate_nonce()
util function: current nonce
1 call to OAuthRequest::generate_nonce()
- OAuthRequest::from_consumer_and_token in ./OAuth.php 
- pretty much a helper function to set up the request
File
- ./OAuth.php, line 395 
Class
Code
private static function generate_nonce() {
  /*{{{*/
  $mt = microtime();
  $rand = mt_rand();
  return md5($mt . $rand);
  // md5s look nicer than numbers
}