Guest User

Untitled

a guest
Jul 16th, 2018
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. $url = file_get_contents('https://www.site.com.br/relacao.txt');
  2.  
  3. www.site.com.br/aluno/s/francisco-augusto/11111111111111
  4. www.site.com.br/aluno/s/francisco-fernandes/11111111111112
  5. www.site.com.br/aluno/s/francisco-ocario/11111111111113
  6. www.site.com.br/aluno/s/giselia-augusto/11111111111114
  7. www.site.com.br/aluno/s/giselia-fernandes/11111111111115
  8.  
  9. 11111111111111
  10. 11111111111112
  11. 11111111111113
  12. 11111111111114
  13. 11111111111115
  14.  
  15. $url = preg_replace("/[^0-9]/", " ", $url);
  16.  
  17. $txt = "www.site.com.br/aluno/s/giselia-fernandes/11111111111115";
  18. $var = explode("/", $txt);
  19. echo $var[4];
Add Comment
Please, Sign In to add comment