20110807

rss2array

查了一堆文章,想把Rss變Array
搞半天,還是自己寫比較快

function rss2array($rssdata)
{
$xml = simplexml_load_string($rssdata);
$ret = @json_decode(@json_encode($xml),1);
return $ret;
}

沒有留言: