Curl veri çekme
<?php
function curl($url, $post=false)
{
$user_agent = 'Mozilla/5.0 (Windows; U; Windows NT 5.1; tr; rv:1.9.0.6) Gecko/2009011913 Firefox/3.0.6';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, $post ? true : false);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post ? $post : false);
curl_setopt($ch, CURLOPT_USERAGENT, $user_agent);
$icerik = curl_exec($ch);
curl_close($ch);
return $icerik;
}
function parcala_ve_al($bas, $son, $yazi)
{
@preg_match_all('/' . preg_quote($bas, '/') .
'(.*?)'. preg_quote($son, '/').'/i', $yazi, $m);
return @$m[1];
}
$icerik = curl("https://m.1x-bet443160.world/live/Football/");
$baslik = parcala_ve_al('<div class="events__cell events__title linkOnLeague" onclick="nojavascript...void(0)" data-href="live/Football/31539-CONCACAF-Champions-League/" data-champ="31539">', '</div>', $icerik);
echo $baslik[0];
?>
Merhaba arkadaşlar div içinde olanlar tam iken veriyi alabiliyorum ama maalesef data değerleri diğer verilerde farklı olduğu için sadece bir tane veri alabiliyorum bu durumu nası çözebilirimm
Soru hatalı mı? 👎
Eğer sorunun kurallara aykırı olduğunu düşünüyorsanız lütfen bize bildirin!