MagpieRSS::concat
Method of the class: MagpieRSS{}
No Hooks.
Returns
null. Nothing (null).
Usage
$MagpieRSS = new MagpieRSS(); $MagpieRSS->concat ( $str1, $str2 );
- $str1(required) (passed by reference — &)
- .
- $str2
- .
Default:""
MagpieRSS::concat() MagpieRSS::concat code WP 7.0
function concat (&$str1, $str2="") {
if (!isset($str1) ) {
$str1="";
}
$str1 .= $str2;
}