Guest User

Untitled

a guest
Apr 19th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <script>
  5. [...]
  6. // Alerta
  7. alert('Olá!');
  8. [...]
  9. </script>
  10. </body>
  11. </html>
  12.  
  13. $html = explode(PHP_EOL, file_get_contents('https://example.com/'));
  14. foreach($html as $linha) {
  15. if(substr($linha, 0, 2) !== '//' && mb_substr($linha, 0, 2) !== '//') {
  16. $linhas[] = trim($linha);
  17. }
  18. }
  19. $html = implode(PHP_EOL, $linhas);
Add Comment
Please, Sign In to add comment