/****************************************** * 内容转义处理 *******************************************/ function tohtml($content) { $content = str_replace( '<' , '<' , $content ); $content = str_replace( '>' , '>' , $content ); return $content; }