如何在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?
答案 0 :(得分:59)
您可以通过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');
答案 1 :(得分:14)
这对我有用:
<pre class="prettyprint linenums">
<code class="language-xml"><?php echo htmlspecialchars(file_get_contents("example.xml"), ENT_QUOTES); ?></code>
</pre>
使用htmlspecialchars可以防止标记显示为html并且不会破坏任何内容。请注意,我正在使用Prettyprint突出显示代码;)
答案 2 :(得分:5)
您可以使用 asXML 方法
echo $xml->asXML();
你也可以给它一个文件名
$xml->asXML('filename.xml');
答案 3 :(得分:5)
如果您只想打印原始XML,则不需要简单XML。我添加了一些错误处理和一个如何使用SimpleXML的简单示例。
<?php
$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);
if ($result === false) {
die('Error fetching data: ' . curl_error($curl));
}
curl_close ($curl);
//we can at this point echo the XML if you want
//echo $result;
//parse xml string into SimpleXML objects
$xml = simplexml_load_string($result);
if ($xml === false) {
die('Error parsing XML');
}
//now we can loop through the xml structure
foreach ($xml->channel->item as $item) {
print $item->title;
}
答案 4 :(得分:4)
我是否过度简化了这一点?
$location = "http://rss.news.yahoo.com/rss/topstories";
print file_get_contents($location);
某些地方(如digg.com)不允许您在没有用户代理的情况下访问其网站,在这种情况下,您需要在运行file_get_contents()之前使用ini_set()进行设置。
答案 5 :(得分:4)
按原样显示html / xml&#34;&#34; (即所有实体和元素),只需转义字符&lt; ,&amp; ,并将结果与&lt; pre&gt; :< / p>
$XML = '<?xml version="1.0" encoding="UTF-8"?>
<root>
<foo>ó</foo>
<bar>ó</bar>
</root>';
$XML = str_replace('&', '&', $XML);
$XML = str_replace('<', '<', $XML);
echo '<pre>' . $XML . '</pre>';
打印:
<?xml version="1.0" encoding="UTF-8"?>
<root>
<foo>ó</foo>
<bar>ó</bar>
</root>
在Chrome 45上测试
答案 6 :(得分:3)
这对我有用:
echo(header('content-type: text/xml'));
答案 7 :(得分:0)
如果有人定位yahoo rss Feed可能会受益于此代码段
<?php
$rssUrl="http://news.yahoo.com/rss/topstories";
//====================================================
$xml=simplexml_load_file($rssUrl) or die("Error: Cannot create object");
//====================================================
$featureRss = array_slice(json_decode(json_encode((array) $xml ), true ), 0 );
/*Just to see what is in it
use this function PrettyPrintArray()
instead of var_dump($featureRss);*/
function PrettyPrintArray($rssData, $level) {
foreach($rssData as $key => $Items) {
for($i = 0; $i < $level; $i++)
echo(" ");
/*if content more than one*/
if(!is_array($Items)){
//$Items=htmlentities($Items);
$Items=htmlspecialchars($Items);
echo("Item " .$key . " => " . $Items . "<br/><br/>");
}
else
{
echo($key . " => <br/><br/>");
PrettyPrintArray($Items, $level+1);
}
}
}
PrettyPrintArray($featureRss, 0);
?>
你可能想先在你的浏览器中运行它,看看有什么,然后循环并设置它非常简单
获取第一项描述
<?php
echo($featureRss['channel']['item'][0]['description']);
?>
答案 8 :(得分:0)
这有效:
<?php
$XML = "<?xml version='1.0' encoding='UTF-8'?>
<!-- Your XML -->
";
header('Content-Type: application/xml; charset=utf-8');
echo ($XML);
?>
答案 9 :(得分:0)
最好的解决方案是将.htaccess
之后的以下行添加到您的Apache RewriteEngine On
文件中
RewriteRule ^sitemap\.xml$ sitemap.php [L]
,然后在根文件夹中仅保存一个文件sitemap.php
,该文件通常可以通过http://www.yoursite.com/sitemap.xml
访问,这是所有搜索引擎首先搜索的默认URL。
文件sitemap.php
应该以
<?php
//Saturday, 11 January 2020 @kevin
header('Content-type: text/xml');
echo '<?xml version="1.0" encoding="UTF-8"?>';
?>
<urlset
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<url>
<loc>https://www.yoursite.com/</loc>
<lastmod>2020-01-08T13:06:14+00:00</lastmod>
<priority>1.00</priority>
</url>
</urlset>
有效:)