Phone.php 536 B

12345678910111213141516171819202122
  1. <?php
  2. namespace UCore\Random;
  3. class Phone
  4. {
  5. //随机生成n条手机号
  6. static public function randomPhone()
  7. {
  8. $tel_arr = array(
  9. '130', '131', '132', '133', '134', '135', '136', '137', '138', '139', '144', '147', '150', '151', '152',
  10. '153', '155', '156', '157', '158', '159', '176', '177', '178', '180', '181', '182', '183', '184', '185',
  11. '186', '187', '188', '189',
  12. );
  13. return $tel_arr[array_rand($tel_arr)] . mt_rand(1000, 9999) . mt_rand(1000, 9999);
  14. }
  15. }