MagpieRSS::concat()

最后更新于:2021-11-25 20:25:09

MagpieRSS::concat($str1, $str2=””)

源文件

文件: gc-includes/rss.php

	function concat (&$str1, $str2="") {
		if (!isset($str1) ) {
			$str1="";
		}
		$str1 .= $str2;
	}