MagpieRSS::concat()publicWP 1.0

Метод класса: MagpieRSS{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$MagpieRSS = new MagpieRSS();
$MagpieRSS->concat ( $str1, $str2 );
$str1 (обязательный) (передается по ссылке — &)
-
$str2 **
-
По умолчанию: ""

Код MagpieRSS::concat() WP 6.5.2

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