MagpieRSS::feed_cdata()
最后更新于:2021-11-25 20:25:40
MagpieRSS::feed_cdata($p, $text)源文件
文件: gc-includes/rss.php
function feed_cdata ($p, $text) {
if ($this->feed_type == ATOM and $this->incontent)
{
$this->append_content( $text );
}
else {
$current_el = join('_', array_reverse($this->stack));
$this->append($current_el, $text);
}
}