Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- function curl($url){
- $ch = curl_init($url);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
- $page=curl_exec($ch);
- curl_close($ch);
- return $page;
- }
- $kod = 'http://www.forum.php.pl/
- http://www.forum.php.pl/
- http://www.forum.php.pl/
- http://www.phpedia.pl/wiki/Specjalna:Ostatnie_zmiany/';
- $exp = explode("\n", $kod);
- $ile_exp = count($exp);
- $ilescan=0;
- for($x = 0; $x < $ile_exp; $x++)
- {
- $down_html = curl($exp[$x]);
- if(!preg_match('/Przedszkole/', $down_html))
- {
- $ilescan++;
- }
- }
- echo $ilescan;
- ?>
Advertisement
Add Comment
Please, Sign In to add comment