php版隨機產生字符串,一個最簡單的利用php生成隨機數或者隨機字符串的函數.$chars變量中的字符本身修改就能達到數字或者字符串的目的php
/** * 產生隨機字符串 * * 產生一個指定長度的隨機字符串,並返回給用戶 * * @access public * @param int $len 產生字符串的位數 * @return string */ function randstr($len=6) { $chars='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-@#~'; // characters to build the password from mt_srand((double)microtime()*1000000*getmypid()); // seed the random number generater (must be done) $password=''; while(strlen($password)<$len) $password.=substr($chars,(mt_rand()%strlen($chars)),1); return $password; }