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