Şimdi Ara

Galatasaray Fikstür Scripti (ORG'dan)

Daha Fazla
Bu Konudaki Kullanıcılar: Daha Az
2 Misafir - 2 Masaüstü
5 sn
1
Cevap
0
Favori
755
Tıklama
Daha Fazla
İstatistik
  • Konu İstatistikleri Yükleniyor
0 oy
Öne Çıkar
Sayfa: 1
Giriş
Mesaj
  • Arkadaşlar bir için lazım olmuştu. İhtiyacı olanlar için burayada koyayım dedim.
    Kolay gelsin...

    <?php 

    header('Content-Type: text/html; charset=utf-8');
    date_default_timezone_set('Europe/Istanbul');

    $ay = date('m');
    $yil = date('Y');


    $url = 'http://www.galatasaray.org/fixtures?month='.$ay.'&year='.$yil;
    $opts = array(
    'http'=>array(
    'method'=>"GET",
    'header'=>"X-Requested-With: XMLHttpRequest\r\n"
    )
    );

    $context = stream_context_create($opts);
    $fikstur = file_get_contents($url, false, $context);
    if(json_decode($fikstur)){
    foreach (json_decode($fikstur) as $fiks){
    preg_match('/\d+/', $fiks->MatchDate, $matches);
    $tarih = date("d-m-Y", substr($matches[0], 0, -3)) ;

    echo $tarih;
    echo "<br>";
    echo $fiks->Text;
    echo "<br><hr>";
    }
    }
    ?>








  • 
Sayfa: 1
- x
Bildirim
mesajınız kopyalandı (ctrl+v) yapıştırmak istediğiniz yere yapıştırabilirsiniz.