我想爲blueimp.net的AjaxChat編寫一個非常基本的註冊模塊。我有一個寫入用戶配置文件的腳本。使用fseek在最後一行之前插入字符串
$userfile = "lib/data/users.php";
$fh = fopen($userfile, 'a');
$addUser = "string_for_new_user";
fwrite($fh, $addUser);
fclose($fh);
但我需要它的最後一行,這是?>
我將如何做到這一點使用FSEEK之前插入$addUser
?