function str2xml($s) { $from = array("!",'"',"&","'","<",">","?"); $to = array("!",""","&","'","<","?"); return str_replace($from, $to, $s); }