我有一个频道发布网站,我想进入频道 CNN 广播节目。CNN 在这里播放节目(你可以在源代码 - XML 文件中看到):
http://tvprofil.net/xmltv/data/cnn.info/weekly_cnn.info_tvprofil.net.xml
数据如何按时间撤出?
例如:
Now program: "bitmez's table"
next program: "stack's table" in 30 minute
这可能吗?
更新1:
我可以获取 XML 数据,但可以获取所有 XML 文件-
<?php
$url = 'http://tvprofil.net/xmltv/data/cnn.info/weekly_cnn.info_tvprofil.net.xml';
$xml = simplexml_load_file($url);
if (!$xml) {
trigger_error('XML file -- read error',E_USER_ERROR);
return;
}
foreach ($xml as $programme) {
echo 'Now: ', $programme->title, "<br>\n";
}