「&」 「<」->「<」 「>」->「>」 「"」->「"」*/ $str = str_replace("&","&",$str); $str = str_replace(">",">",$str); $str = str_replace("<","<",$str); $str = str_replace('"',""",$str); return $str; } ?> user_function1.php A&B"; $str_sample = conv1($str_sample); print $str_sample; ?>