primalmz, Я же тебе говорю, ты какой то не логичный план составляешь![]()
Пробуй, под свои нужды сам перепишешь))
if (!is_file('schedule.json')) {
$url = 'https://www.mtrk.uz/uz/api/mtrk/schedule.json';
file_put_contents('schedule.json', file_get_contents($url));
} else {
$url = 'schedule.json';
}
$contents = file_get_contents($url);
$obj = json_decode($contents, true);
foreach ($obj['data'][0] as $key => $val) {
if ($key != 'items') {
continue;
}
foreach ($val as $item) {
if (isset($item['descr']) && $item['descr'] == '/rus/') {
echo '(rus tilida)<br />';
} else {
echo 'Iwlamadi<br />';
}
}
}