是HTML编辑器吗?推荐一个ustb (偶然)大侠的**[软件包] BITE在线编辑器1.05版http://expert.csdn.net/Expert/topic/2760/2760696.xml?temp=1.336306E-02

解决方案 »

  1.   

    不明白楼主的意思如果是想把PHP页面生成的HTML代码生成独立的文件,可以使用下面的代码。$s_fname = "top10list.php";
    $o_fname = "top10list.htm";
    ob_end_clean();
        ob_start();
        include($s_fname);
        $length = ob_get_length();
        $buffer = ob_get_contents();
        $buffer = eregi_replace("\r\n","\n",$buffer);
    ob_end_clean();$fp = fopen($o_fname,"w+");
    fwrite($fp,$buffer);
    fclose($fp);这样就可以把
    top10list.php转化为静态的HTML文件了
    要注意的是待转换的文件里不能有
    ob_end_clean();和 ob_start();语句。
    且目录要有写权限。
      

  2.   

    学习中....hehe
    试一下楼上老大的东东