Hocam dene olması lazım.
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => 'https://apkfulldownload.com/',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_REFERER => "https://google.com.tr/",
CURLOPT_USERAGENT => "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36"
]);
$cek = curl_exec($curl);
$cek = preg_replace("/\s+/", " ", $cek);
preg_match_all('@<div class="bloque-app"> <a href="(.*?)"> <div class="bloque-imagen"><img width="(.*?)" height="(.*?)" src="(.*?)" class="attachment-thumbnail size-thumbnail wp-post-image" alt=""(.*?)></div> <span class="title">(.*?)</span> <span class="developer"></span> <div class="px-postmeta"> <span class="version">(.*?)</span> <div class="box-rating voted" data-post-id="(.*?)"> <span class="rating"> <span class="stars" style="(.*?)"></span></span> </div> </div> </a>@si', $cek, $sonuc);
curl_close($curl);
echo"<pre>";
print_r($sonuc);
echo "</pre>";
?>