一行上有多个htmlspecialchars代码

时间:2013-01-02 15:31:16

标签: rss htmlspecialchars

我正在使用joomla(mediarss)上的模块设置rss feed。我设法添加了一些自定义代码,我现在的问题是,我可以在一行中使用多个htmlspecialchars代码/字段。

Herunder,例子:

$feed.= "        <title>".htmlspecialchars(strip_tags(strtr($this->items[$i]->title,"\n\r","  ")))."</title>\n";
$feed.= "        <region>".htmlspecialchars(strip_tags(strtr($this->items[$i]->region,"\n\r","  ")))."</region>\n";

第一个Feed显示rss Feed中帖子的标题,第二个显示区域。 region字段是我们在joomla后端添加的自定义字段。

rss feed中的

显示如下:

<title>the title of the post</title>

<region>the region filled in, in the custom field 'region'</region>

我想要实现的是输出

<title>the title of the post **in** the region filled in, in the custom field 'region' </title>

我可以将2个代码放在一行吗?

非常感谢,

0 个答案:

没有答案