如何在php中将XML文件打印到屏幕上?
这不起作用:
$curl = curl_init(); curl_setopt ($curl, CURLOPT_URL, 'http://rss.news.yahoo.com/rss/topstories'); curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); $result = curl_exec ($curl); curl_close ($curl); $xml = simplexml_load_string($result); echo $xml;
有没有简单的解决方案?也许没有SimpleXML?
借助PHP的包装程序,您可以像使用本地URL一样使用HTTP URL
您可以通过file_get_contents()从URL获取内容,然后回显它,甚至可以使用readfile()直接读取它
$file = file_get_contents('http://example.com/rss'); echo $file;
要么
readfile('http://example.com/rss');
但是,不要忘记在输出任何内容之前设置正确的MIME类型。
header('Content-type: text/xml');