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


Description Description


Source Source

File: wp-includes/rss.php

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


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.