MagpieRSS::concat() public WP 1.0
{} Это метод класса: MagpieRSS{}
Хуков нет.
Возвращает
Null. Ничего.
Использование
$MagpieRSS = new MagpieRSS(); $MagpieRSS->concat ( $str1, $str2 );
- $str1 (обязательный)
- -
- $str2 **
- -
По умолчанию: ""
Код MagpieRSS::concat() MagpieRSS::concat WP 5.6.2
function concat (&$str1, $str2="") {
if (!isset($str1) ) {
$str1="";
}
$str1 .= $str2;
}