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