Drupal 7用于获取<img/>标签内的图像

时间:2012-06-12 00:28:53

标签: image drupal drupal-7 feeds

我有以下格式的供稿链接

<item>
<title>Lorum ipsum</title>
<teaser>Lorum ipsum</teaser>
<description>Lorum ipsum</description>
<link>http://www.example.com/article/?ad=1</link>
<image>http://www.example.com/image/123456/248x500?.cached</image>
<author>noreply@example.com</author>
<pubDate>Wed, 2 May 2012 14:22:24 +0200</pubDate>
<guid isPermaLink="false">http://www.example.comARTICLE12345678</guid>
</item>

我试图将标签内的图像抓取到Drupal中的一个单独的字段,但到目前为止没有任何工作。尝试了许多教程,但除了图像之外,所有内容都已保存。

可以解决什么问题? 非常感谢

Sathish所在

1 个答案:

答案 0 :(得分:0)

如果您使用自定义PHP代码生成此Feed,则可以将图片嵌入description标记内。

$description = "Lorum ipsum" . "<br />";
$description .= check_plain("<img alt='' src='PATH_TO_IMAGE' />");

希望这有帮助......穆罕默德。