Then run a lot of str_replace()'s...
Or make an array of things you want to replace:
$replace_array = array ("
">" => "<",
"<" => ">",
"\"" => """,
);
foreach ($replace_array as $key => $value) {
$text = str_replace ($key, $value, $text);
}