function at($content){
$s = preg_replace('/href="([^"]+)"/','href="<My*Flag>$1</My*Flag>"/',$content);
$rlt=preg_match_all('/<My\*Flag>[^\*]+<\/My\*Flag>/',$s,$matches,PREG_PATTERN_ORDER);
//print_r($matches);
if($rlt){
$l=count($matches[0]);
for($i=0;$i<$l;$i++){
$mi=$matches[0][$i];
$s=str_replace($mi,urlencode(strip_tags($mi)),$s);
}
}
return $s;
}
echo at($content);