MagpieRSS::append_content()

最后更新于:2021-11-25 20:24:54

MagpieRSS::append_content($text)

源文件

文件: gc-includes/rss.php

	function append_content($text) {
		if ( $this->initem ) {
			$this->concat( $this->current_item[ $this->incontent ], $text );
		}
		elseif ( $this->inchannel ) {
			$this->concat( $this->channel[ $this->incontent ], $text );
		}
	}