MagpieRSS::concat( $str1,  $str2 = "" )


Description Description


Source Source

File: wp-includes/rss.php

276
277
278
279
280
281
function concat (&$str1, $str2="") {
    if (!isset($str1) ) {
        $str1="";
    }
    $str1 .= $str2;
}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.