| <?php |
| |
| $link = ['https://www.harunalp.com/link-sonundaki-php-asp-html-uzantilari-gizleme/','https://www.harunalp.com/elektronik-sigara-tamir-eden-yerler/','https://www.harunalp.com/google-profil-resmi-silme-ve-degistirme/']; |
| |
| /* BELİRLİ BİR ALANI ÇEKME */ |
| |
| /* for($i=0;$i<=count($link);$i++){ |
| @$conn = file_get_contents($link[$i]); |
| preg_match_all('@<h1 class="entry-title" itemprop="headline">(.*?)</h1>@si',$conn,$title); |
| echo @$title[0][0]; |
| } |
| |
| */ |
| |
| |
| /* TÜM LİNKLERİNİ TOPLAMAK */ |
| |
| /*for($i=0;$i<=count($link);$i++){ |
| @$conn = file_get_contents($link[$i]); |
| preg_match_all("/href=\"([^\"]+)/i",$conn,$links); |
| foreach ($links[0] as $row) |
| { |
| echo $row ."<br>"; |
| } |
| } |
| |
| */ |
| |
| ?> |