我最好先说我不是程序员。我正在修改购物车,现在遇到了超出我的工资等级的问题。购物车允许我在页面上的一个块中显示 rss 提要的输出。问题是提要的大部分内容都在 CDATA 标记内,因此无法正确显示。我需要从提要中去除 CDATA 标签。
处理提要的代码是
function fn_get_rss_feed($data)
{
if (!empty($data['feed_url'])) {
$data_key = 'rss_data_cache_' . (isset($data['block_data']['block_id']) ? $data['block_data']['block_id'] : 0);
if (!empty($data['cache_time'])) {
Registry::register_cache($data_key, $data['cache_time'], CACHE_LEVEL_TIME);
}
if (Registry::is_exist($data_key) == false) {
$limit = !empty($data['max_item']) ? $data['max_item'] : 3;
$rss_data = array();
$rss = simplexml_load_string(fn_get_contents($data['feed_url']));
if (!empty($rss)) {
$it = 0;
$items = array();
foreach ($rss->channel->item as $item) {
if ($it > $limit) {
break;
}
$items[] = array(
'title' => (string)$item->title,
'description' => (string)$item->description,
'pubDate' => (string)$item->pubDate,
'link' => (string)$item->link
);
$it++;
}
$rss_data = array(array(
$items,
(string)$rss->channel->link,
$data['feed_url']
));
Registry::set($data_key, $rss_data);
}
return $rss_data;
} else {
return Registry::get($data_key);
}
}
return array();
}
它是围绕它的 CDATA 标签的“描述”。搜索网络,我发现此代码用于从字符串中删除 CDATA 标记。
function strip_cdata($string)
{ preg_match_all('/<!\[cdata\[(.*?)\]\]>/is', $string, $matches);
return str_replace($matches[0], $matches[1], $string);
}
我假设有一种方法可以使用该函数从描述中去除 cdata 标签 - 或者可能没有。RSS 提要的输出通过 .tpl 文件显示。
任何和所有的帮助都非常感激。
布鲁斯