Username Mentioning in PHP
Added by astuffedtiger on 2017-05-16 19:24:46
'.$matches[0].'';
}

$output = preg_replace_callback("/([@][-_a-zA-Z-0-9]+)/", "replace_at_symbol", $text);
echo $output;
?>