I want to convert this JSON
Feed to RSS
in php, and get the following information
title
, date
, and images
I have get the data like this, it gives me an array
<?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);
Kindly educate me in the right direction to get the rss feed from the given json
, I don't know how to do that
Thanks