http://expert.csdn.net/Expert/topic/2210/2210184.xml?temp=.6457788

解决方案 »

  1.   

    简单的方法,先读出来,再写进去如:
    <?
      $oldFileArray = file(文件);  $oldFileArray[1] = "1234567";//修改第二行  $f_new = fopen("新文件","w");
      for($i = 0; $i<count($oldFileArray);$i++)
      {
          fwrite($f_new,$oldFileArray[$i]);
      }
      fclose($f_new );?>以上代码没有测试,基本思路是这样的了,简单好理解
      

  2.   

    fseek我想这个函数是你要的~~~~~给你大概的思路吧~~~用fseek定位到你要修改的字节那里,读出来,修改,然后依然还是用fseek,定位,将修改前的内容删掉,插入修改后的内容~~~
      

  3.   

    手册上的说明:fseek
    (PHP 3, PHP 4 )fseek -- Seeks on a file pointer
    Description
    int fseek ( int fp, int offset [, int whence])
    Sets the file position indicator for the file referenced by fp.The new position, measured in bytes from the beginning of the file, is obtained by adding offset to the position specified by whence, whose values are defined as follows: 
    SEEK_SET - Set position equal to offset bytes. 
    SEEK_CUR - Set position to current location plus offset. 
    SEEK_END - Set position to end-of-file plus offset. (To move to a position before the end-of-file, you need to pass a negative value in offset.) If whence is not specified, it is assumed to be SEEK_SET. Upon success, returns 0; otherwise, returns -1. Note that seeking past EOF is not considered an error. May not be used on file pointers returned by fopen() if they use the "http://" or "ftp://" formats. 注: The whence argument was added after PHP 4.0.0. See also ftell() and rewind().