du656637962 2012-03-19 01:07
浏览 101
已采纳

使用fseek在最后一行之前插入字符串

I am trying to write a very basic registration module for blueimp.net's AjaxChat. I have a script that writes to the user config file.

$userfile = "lib/data/users.php";
$fh = fopen($userfile, 'a');
$addUser = "string_for_new_user";
fwrite($fh, $addUser);
fclose($fh);

But I need it to insert $addUser before the very last line, which is ?>

How would I accomplish this using fseek?

  • 写回答

2条回答 默认 最新

  • dourao1896 2012-03-19 01:29
    关注

    If you always know that the file ends with ?> and nothing more, you can:

    $userfile = "lib/data/users.php";
    $fh = fopen($userfile, 'r+');
    $addUser = "string_for_new_user
    ?>";
    fseek($fh, -2, SEEK_END);
    fwrite($fh, $addUser);
    fclose($fh);
    

    To further enhance the answer: you're going to want to open your file in mode r+ because of the following note regarding fseek:

    Note:

    If you have opened the file in append (a or a+) mode, any data you write to the file will always be appended, regardless of the file position, and the result of calling fseek() will be undefined.

    fseek($fh, -2, SEEK_END) will place the position at the end of the file, and then move it backwards by 2 bytes (the length of ?>)

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 matlab有关常微分方程的问题求解决
  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿
  • ¥15 回答4f系统的像差计算
  • ¥15 java如何提取出pdf里的文字?
  • ¥100 求三轴之间相互配合画圆以及直线的算法
  • ¥100 c语言,请帮蒟蒻写一个题的范例作参考
  • ¥15 名为“Product”的列已属于此 DataTable