コード例 #1
0
ファイル: _ide_helper.php プロジェクト: Smony/njphoto
 /**
  * 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);
 }