[php] <?php function htmltojs($str){ $re=''; $str=str_replace('\','\\',$str); $str=str_replace("'","'",$str); $str=str_replace('"','"',$str); $str=str_replace('t','',$str); $str= split("rn",$str); //已分割成數組 for($i=0;$i<count($str);$i++){ $re.="document.writeln("".$str[$i]."");rn"; //加上js輸出 } return $re; } ?> [/php]