(.*)<\/div>
.*<\/div>/im';
unset($html[count($html) - 1]);
foreach($html as $channel) {
if (strpos("freq_color_", $channel) === false) {
$matchCount = preg_match_all($re, $channel, $channelM, PREG_SET_ORDER, 0);
if ($matchCount != 1) {
continue;
}
$channelM = $channelM[0];
unset($channelM[0]);
$pidsSlice = array_slice($channelM, 7);
$pids=array();
foreach($pidsSlice as $pid) {
if (intval($pid) != 0) {
if ((strpos("|", $pid) === false)) {
$multiKultiPIDs_xD = explode('|', $pid);
foreach($multiKultiPIDs_xD as $pidpid) {
array_push($pids, intval(preg_replace( '/[^0-9]/', '', $pidpid)));
}
} else {
array_push($pids, intval(preg_replace( '/[^0-9]/', '', $pid)));
}
}
}
$pids=array_merge($pids, processChannel($channelM[1]));
$channel=array(
"link" => $channelM[1],
"name" => $channelM[2],
"hdtv" => !(strpos($channelM[3], "1") === false),
"encrypted" => !(strpos($channelM[4], "1") === false),
"land" => $channelM[5],
"kategorie" => $channelM[6],
"transponder" => $transponder,
"pids" => $pids,
);
print_r($channel);
array_push($channels, $channel);
}
}
}
$transponder = getTransponders($transponderDB);
foreach($transponder as $t) {
processTransponder($t);
}
file_put_contents("channels.json", json_encode($channels));
?>