VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • 生成随机字符串,包含大写、小写字母、数字php代码

  1. function randstr($length) { 
  2.  $hash = ''
  3.  $chars = 'abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz'
  4.  $max = strlen($chars) - 1; 
  5.  mt_srand((double)microtime() * 1000000); 
  6.  for($i = 0; $i < $length$i++) { 
  7.   $hash .= $chars[mt_rand(0, $max)]; 
  8.  } 
  9.  return $hash
  10.  

出处:http://www.phpfensi.com/php/20140806/4243.html


相关教程