在哪有文件操作方面的东西?? wchun(水晶沙拉

解决方案 »

  1.   

    $fp = fopen("http://localhost/test.php","r");
    while($d = fgets($fp,4096)){
      $data.= $d;
    }
    fclose($fp);$file = "test.html";
    if(!file_exists($file)){
      $fp = fopen($file,"w+");
      fwrite($fp,$data);
      fclose($fp);
      

  2.   

    to piner(piner) 你的代码测试不成功
      

  3.   

    刚找了一下
    http://www.qimi.net/downsky/soft/380.htm