Başka siteden veri çekme kodu
Merhabalar Maç tahminlerini paylaşan sitelerden veri çekmek istiyorum
bunu interneten bulduğum basit bir kod ile yapıyordum ama
tabloyu komple çekeyirdum bazı sitelerde ise olmuyordu
ben bu siteden çekmek istiyorum ama yerleri farklı olacak nasıl bir kod ile çekebilirim tahminleri
çekmek istedğim tahminler
bu sitede
Kulandığım kod
<?php
function siteConnect($site)
{
$ch = curl_init();
$hc = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 OPR/73.0.3856.415";
curl_setopt($ch, CURLOPT_REFERER, 'http://www.google.com');
curl_setopt($ch, CURLOPT_URL, $site);
curl_setopt($ch, CURLOPT_USERAGENT, $hc);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$site = curl_exec($ch);
curl_close($ch);
// Veriyi parçalama işlemi
preg_match_all('@---(.*?)</div>@si',$site,$veri_derece1);
echo $veri_derece1[0][0];
}
$giris = siteConnect('site adresi');
echo $giris;
?>
include_once '../simple_html_dom.php';
$dom = new simple_html_dom();
$ch = curl_init('https://www.mybets.today/soccer-predictions/');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_USERAGENT => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 OPR/73.0.3856.415'
]);
$result = curl_exec($ch);
curl_close($ch);
$dom->load($result);
$c = $dom->find('.event-fixtures');
$data = [];
foreach ($c as $item) {
$lig = $item->find("meta[itemprop='name address']")[0]->content;
$tarih = $item->find("time")[0]->datetime;
$saat = $item->find("time")[0]->plaintext;
$takim1 = $item->find("span.homespan")[0]->plaintext;
$takim2 = $item->find("span.awayspan")[0]->plaintext;
$oran = $item->find(".tipdiv > span")[0]->plaintext;
$data[$lig][] = [
'tarih' => $tarih,
'saat' => $saat,
'takim_1' => $takim1,
'takim_2' => $takim2,
'oran' => $oran
];
}
print_r($data);
simple html dom parser ı [bu] (https://simplehtmldom.sourceforge.io/) adresten indir ve sayfana dahil et. Gerisi sihir