PHP_XML转数组-转出来成空的解决办法
libxml_disable_entity_loader(true);
$url = "http://blog.mydrivers.com/sina/kkj.aspx"; //快科技
$res = file_get_contents($url);
$res = simplexml_load_string($res,'SimpleXMLElement',LIBXML_NOCDATA);
$r['tk'] = json_decode(json_encode($res),TRUE);
$items = $r["tk"]["channel"]["item"];
最重要的就是这一句
$res = simplexml_load_string($res,'SimpleXMLElement',LIBXML_NOCDATA);