php随机生成手机号的方法
墨初 编程开发 667阅读
闲着无聊用php脚本代码写一个随机生成手机号的函数,下面是函数的介绍与用法。
php生成手机号的函数
下面是一个自定义的生成随机手机号的函数,只需要输入生成的数量就能生成相同数量的随机手机号码!
/** * # 随机生成手机号的函数 * @param int $count 生成手机号的数量 * * @return array * https://www.73so.com */ function rand_phone($count) { $array_phone = array(); for ($i = 0; $i < $count; $i++) { // 下面是生成手机号的前缀,可以根据自己的需求进行修改 $prefix = array('130', '131', '132', '133', '134', '135', '136', '137', '138', '139', '150', '151', '152', '153', '155', '156', '157', '158', '159', '170', '176', '177', '178', '180', '181', '182', '183', '184', '185', '186', '187', '188', '189'); $index = rand(0, count($prefix) - 1); $phoneNumber = $prefix[$index] . rand(1000, 9999) . rand(1000, 9999); array_push($array_phone, $phoneNumber); } return $array_phone; }
函数用法:
var_dump(rand_phone(10)); // 由于怕手机号与一些人的手机号重复,这里不做结果展示了
上面就是利用php脚本代码随机生成手机号的自定义函数,仅供学习使用哦!