Merhaba arkadaşlar sitedeki font linkleri çekeceğim fakat 150 sayfalık listenin sadece 35. sayfasına kadar çekiyor hata nedir ki anlamadım...
<?php
for ($i=1; $i < 120; $i++) {
$html = file_get_contents("https://www.dafont.com/alpha.php?lettre=a&page={$i}");
$doc = DOMDocument::loadHTML($html);
$xpath = new DOMXPath($doc);
$query = "//a[@class='dl']";
$entries = $xpath->query($query);
foreach ($entries as $entry) {
echo "https:".$entry->getAttribute("href")."<br>";
$fp = fopen( "kayit.html" , "a+" );
$yazilacak = "https:".$entry->getAttribute("href")."<br>";
fwrite( $fp, $yazilacak);
fclose( $fp );
}
}
?>