提问人:Andy Griffiths 提问时间:11/1/2022 最后编辑:Andy Griffiths 更新时间:11/2/2022 访问量:73
使用 PHP simplexml_load_file解析播客源时出现问题
Issues using PHP simplexml_load_file to parse a podcast feed
问:
我正在使用一些我敲出的代码来解析一些播客提要,但只得到了第一集,在过去的一周里,大概是由于提要的变化,它只是停止工作了......
代码如下,在阅读 PHP 文档后,我尝试了很多事情来让它再次工作,但我似乎正在掉进一个兔子洞,让事情变得更糟......
有人能帮忙吗? 谢谢
<?php
header('Content-Type: application/xml');
$output = '<rss xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">';
/* IGN */
$xmlIGN = simplexml_load_file('https://api.spokenlayer.com/feed/channel/ign-podcasts-ext/3c9929b72538c12bd92ac6762f8d798b9d4e8cdca7692ea74f466061d01816cb');
$IGN = ($xmlIGN->channel->item[0]);
print_r ($output);
print_r ('<channel>');
print_r ($IGN->asXML());
print_r ('</channel></rss>');
?>
在抛出一些测试标签后,它似乎在simplexml_load_file出错,但不确定为什么......
编辑:添加了活动PHP扩展的图片,在此处输入图像描述
答: 暂无答案
评论
https://api.spokenlayer.com
http://api.spokenlayer.com