我尝试并寻找解决方案,但找不到任何明确的解决方案。
基本上,我有一个列出用户名和密码的 txt 文件。我希望能够更改某个用户的密码。
users.txt 文件内容:
user1,pass1
user2,pass2
user3,pass3
我尝试了以下 php 代码:
// $username = look for this user (no help required)
// $userpwd = new password to be set
$myFile = "./users.txt";
$fh = fopen($myFile,'r+');
while(!feof($fh)) {
$users = explode(',',fgets($fh));
if ($users[0] == $username) {
$users[1]=$userpwd;
fwrite($fh,"$users[0],$users[1]");
}
}
fclose($fh);