gpt4 book ai didi

php - 将图像添加到 RSS 提要的正确方法?

转载 作者:可可西里 更新时间:2023-11-01 07:12:53 27 4
gpt4 key购买 nike

就像每个项目一个,而不是整个 Feed 的 Logo 。

我正在使用 php 生成带有来自数据库的值的提要。 firefox 上没有任何显示,但如果我在 chrome 中打开 url,我可以在那里看到所有 xml 输出,我觉得它很好。

我不确定的一件事是包含图像,我使用了这个网站并实现了它所说的:

http://twigstechtips.blogspot.com/2010/10/add-image-to-your-rss-feed-item.html

我也看到了这个 SO 问题:RSS feed: to feed images to your rss .这可能是最好的方法,我假设有一个 php 函数来确定图像的文件大小?

我见过的最常见的方式也是SO上的一个问题:Images in RSS feed

我已经尝试验证提要以测试为什么它没有显示在 firefox 上,但是因为它太大了,到目前为止我访问过的网站都无法验证它。这是否可能是它不在 Firefox 上显示的原因(在我截断 CDATA 部分和尝试添加图像之前,它确实曾经在某个时候显示过)。

唯一的问题是我不确定它在我的提要中的位置。请查看下面的源代码和示例输出:

来源(减去不必要的东西,如包含等)

header("Content-Type: application/rss+xml; charset=utf-8");

$rssfeed = '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
$rssfeed .= '<rss version="2.0">' . "\n";
$rssfeed .= '<channel>' . "\n";
$rssfeed .= '<title>RSS feed</title>' . "\n";
$rssfeed .= '<link>http://www.website.co.uk</link>' . "\n";
$rssfeed .= '<description>RSS feed from www.website.co.uk</description>' . "\n";
$rssfeed .= '<language>en-uk</language>' . "\n";
$rssfeed .= '<copyright>Copyright (C) 2011 website.co.uk</copyright>' . "\n\n";

$query = 'SELECT *
FROM uk_newsreach_article t1
INNER JOIN uk_newsreach_article_photo t2
ON t1.id = t2.newsArticleID
INNER JOIN uk_newsreach_photo t3
ON t2.newsPhotoID = t3.id
ORDER BY t1.publishDate DESC;';

$result = mysql_query($query) or die ("Could not execute query");


while($row = mysql_fetch_array($result)) {
extract($row);

$rssfeed .= '<item>' . "\n\t";
$rssfeed .= '<title>' . $row['headline'] . '</title>' . "\n\t";

$link= 'http://www.website.co.uk';
$url = ' . $link . '/' . $row['newsArticleID'];

$rssfeed .= '<link>' . $url . '</link>' . "\n\t";
$rssfeed .= '<guid>' . $url . '</guid>' . "\n\t";

$text = $row['text'];
$rssfeed .= '<description><![CDATA[' . $text . ']]></description>' . "\n\t";
// $rssfeed .= '<description>' . htmlentities($text) . '</description>' . "\n\t";

// add image
$rssfeed .= '<media:thumbnail url="' . $row['mediumURL'] . '" height="' . $row['mediumHeight'] . '" width="' . $row['mediumWidth'] . '" />'. "\n\t";

$rssfeed .= '<pubDate>' . date("D, d M Y H:i:s O", strtotime($row['publishDate'])) . '</pubDate>' . "\n";
$rssfeed .= '</item>' . "\n\n";
}

$rssfeed .= '</channel>' . "\n";
$rssfeed .= '</rss>' . "\n";

echo $rssfeed;

示例输出

<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title>RSS feed</title>
<link>http://www.website.co.uk</link>
<description>RSS feed from www.website.co.uk</description>
<language>en-uk</language>
<copyright>Copyright (C) 2011 website.co.uk</copyright>

<item>
<title>Some Title</title>
<link>http://www.website.co.uk/news/articles/slug</link>
<guid>http://www.website.co.uk/news/articles/slug</guid>
<description><![CDATA[<p>Text</p>
<p>More text</p>
<p>Posted by Firstname Lastname</p>]]></description>
<media:thumbnail url="http://www.website.co.uk/img/image.jpg" height="300" width="203" />
<pubDate>Mon, 03 Oct 2011 16:57:09 +0000</pubDate>
</item>
....
....
</channel>
</rss>

最佳答案

通过在 CDATA 部分中插入图像来设法包含图像,如下所示:

$text = $row['text'];
$image = '<p><img class="center" src="' . $row['mediumURL'] . '" alt="' . $row['htmlAlt'] . '"/></p>';
$description = $image . $text;

$rssfeed .= '<description><![CDATA[' . $description . ']]></description>' . "\n\t";

http://www.pearsonified.com/2007/06/how-to-format-images-for-feed-readers.php#comment-185597

关于php - 将图像添加到 RSS 提要的正确方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8309110/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com