00:00
01:42
01:55
03:45
04:10
04:30
06:05
06:10
08:00
Yukarıdaki saatleri aşağıdaki şekilde nasıl ayarlarım.
00:00-01:42
01:42-01:55
01:55-03:45
03:45-04:10
04:10-04:30
04:30-06:05
06:05-06:10
06:10-08:00
Php bilgisi olan yardım edebilirmi? |
8 Mesajlar | 988 Okunma |
$a = "https://www.siteadi.com/actions/channel_stream/704";
$b = file_get_contents($a);
$c = json_decode($b, true);
$tarih = date("d.m.Y");
//print_r($c);
foreach($c['stream'] as $p){
//echo $tarih."
";
if($p['day']==$tarih){
foreach($p['events'] as $m){
$proghour = $m['hour'];//Program başlama saati
$progid = $m['id'];
$progname = $m['program'];//Program adı
$progdetay = "https://www.siteadi.com/actions/stream_movie_detail/".$progid;
echo $proghour."
";
}
}
// program detayı
}
$a = "https://www.siteadi.com/actions/channel_stream/704";
$b = file_get_contents($a);
$c = json_decode($b, true);
$tarih = date("d.m.Y");
//print_r($c);
foreach($c['stream'] as $p){
//echo $tarih."
";
if($p['day']==$tarih){
$i= 1; //Foreach döngüsü başlamadan sayıyı 1'e eşitliyoruz
foreach($p['events'] as $m){
$proghour = $m['hour'];//Program başlama saati
$progid = $m['id'];
$progname = $m['program'];//Program adı
$progdetay = "https://www.siteadi.com/actions/stream_movie_detail/".$progid;
if($i %2 == 0){ //Sayı tek mi çift mi kontrolü
echo $proghour."
";
}else {
echo $proghour.'-';
}
$i++; //$i sayısını artırıyoruz
}
}
// program detayı
}