Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <?php
  2.  
  3. $numero_inicial = 1;
  4. $numero_final = 1000;
  5. $casas_decimais = 4;
  6. $prefixo = "http://www.kamisama.com.br/imagens/";
  7. $sufixo = ".jpg";
  8.  
  9. for ($i = $numero_inicial; $i <= $numero_final; $i++) {
  10.  
  11. echo $prefixo . str_pad($i, 4, "0", STR_PAD_LEFT) . $sufixo . "<br>";
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement