我想在php中将thisJSON
Feed转换为RSS
,然后获得以下信息title
、date
和images
我得到了这样的数据,它给了我一个数组
<?php
function convert_jsonfeed_to_rss($content = NULL, $max = NULL){
$jsonFeed = json_decode($content, TRUE);
echo "<pre>";
print_r($jsonFeed);
echo "</pre>";
}
$content = @file_get_contents("shorturl.at/gDHY9");
convert_jsonfeed_to_rss($content);
请教育我在正确的方向to get the rss feed from the given json
,我不知道如何做到这一点谢谢
1条答案
按热度按时间iszxjhcz1#
下面是一个PHP函数的示例,您可以使用它将JSON提要转换为RSS提要,此函数将JSON提要的URL作为输入,并将其转换为RSS提要: