Guest User

Untitled

a guest
Nov 20th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <?php
  2. public function randPhone()
  3. {
  4. $areaCode = array();
  5. $exchange = array();
  6. $subscriber = array();
  7.  
  8. for ($i = 0; $i < 3; $i++) {
  9. $areaCode []= rand(1, 9);
  10. $exchange []= rand(1, 9);
  11. }
  12.  
  13. for ($i = 0; $i < 4; $i++) {
  14. $subscriber []= rand(0, 9);
  15. }
  16.  
  17. return implode('', $areaCode) .
  18. implode('', $exchange) .
  19. implode('', $subscriber);
  20. }
  21. ?>
Add Comment
Please, Sign In to add comment