Advertisement
Guest User

Untitled

a guest
Nov 25th, 2014
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4. include "list.php";
  5.  
  6.  
  7. $count = count($list);
  8. ini_set("user_agent", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.6 (KHTML, like Gecko) Chrome/20.0.1092.0 Safari/536.6");
  9.  
  10. for($i = 0; $i < $count; $i++) {
  11.  
  12.  
  13. $content = file_get_contents($list[$i]);
  14. if ($content !== false) {
  15. // Controllo se nella pagina รจ presente il link
  16.  
  17. if (strpos($content, $banner) !== false) {
  18. echo "<span style='color: green;'>". $list[$i] . " contiene il link</span><br />";
  19. }
  20. else {
  21. echo "<strong><span style='color: red;'>" . $list[$i] . ' non contiene il link</span></strong><br />';
  22. }
  23.  
  24. } else {
  25. echo "sito offline<br />";
  26. }
  27.  
  28. }
  29.  
  30.  
  31. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement