示例#1
0
 /**
  * Generate a more truly "random" bytes.
  *
  * @param int $length
  * @return string 
  * @throws \RuntimeException
  * @static 
  */
 public static function randomBytes($length = 16)
 {
     //Method inherited from \Illuminate\Support\Str
     return \October\Rain\Support\Str::randomBytes($length);
 }