我有一个转换此JSON数据的想法:
https://www.googleapis.com/youtube/v3/videos?part=snippet&chart=mostPopular&maxResults=50®ionCode=us&videoCategoryId=10&key=Mykey
到xml,用于提要Rss阅读器
如何仅使用PHP做到这一点?
我的敬意
答案 0 :(得分:0)
Youtube API仅返回JSON。您可以在代码中加载json并使用
实现自己的XMLheader('Content-type: text/xml');
// other headers are required
echo "<?xml version=\"1.0\" encoding=\"utf-8\"?>";
echo '<xml>';
// Your data
echo '</xml>';