Posted in PHP onMay 04, 2014
php随机生成字符串可以自己定义自己所需要的长度,在实际应用开发中,经常遇到。
//随机生成字符串 function random($length) { srand(date("s")); $possible_charactors = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; $string = ""; while(strlen($string)<$length) { $string .= substr($possible_charactors,(rand()%(strlen($possible_charactors))),1); } return($string); }
PHP生成自定义长度随机字符串的函数分享
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@