Guest User

Untitled

a guest
Jul 21st, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. <?php
  2.  
  3. $start = 1;
  4. $end = 9;
  5. $times = 3;
  6. $linesize = 5;
  7. $string = '';
  8.  
  9. for($i = $start; $i <= $end; $i++)
  10.     $string .= str_repeat($i, $times);
  11. $string = chunk_split($string, $linesize, '<br />');
  12.  
  13. echo $string;
  14.  
  15. ?>
Add Comment
Please, Sign In to add comment