在php中读取文本文件时出错

时间:2011-10-17 01:02:06

标签: php mysql

我有一个需要导入数据库的文件。 (我的数据库很好,我可以连接,我可以添加)。现在我的问题是由于某种原因没有插入任何内容。

我有一个文件 schooldatabase.txt 我需要添加到数据库中的用户/密码。该文件有200行。

以下是一个示例:

test|098f6bcd4621d373cade4e832627b4f6
test2|ad0234829205b9033196ba818f7a872b

现在,对于每一行(学生用户名和密码),我必须将它们插入数据库中。

这是我的代码:

function addUser($user,$pass) {
// this code is good
}

function processUser($user,$pass) {
  $pass=md5($pass);
  $myFile = "schooldatabase.txt";
  $fh = fopen($myFile, 'r');
  $theData = fread($fh, 5);
  $login = "$user|$pass";
  if(stristr($theData,$login) !== false){
      $result = "rejected";
  }
  elseif(stristr($theData,$login) !== true){
      addUser($user,$pass); // this work I manuall tested
      $result = "accepted";
   }
   fclose($fh);
   return $result;
}
var_dump(processUser('invaliduser','test2'));

如果该用户不在文件中,为什么返回“已接受”?

2 个答案:

答案 0 :(得分:25)

我想在这里你应该重新思考你的过程。我假设您“processUser”不止一次,因此您将反复打开/读取/关闭同一文件而不更改该文件。

因为文件不是很大(我认为它是一次性脚本),所以只需在启动脚本时打开内存中的文件,然后就可以将正在测试的所有值与该文件进行比较。

您可以使用功能file执行此操作。然后,您可以使用in_array检查用户是否存在。

这是脚本:

function addUser($user,$pass) {
// this code is good
}

$file = file("schooldatabase.txt", FILE_IGNORE_NEW_LINES ^ FILE_SKIP_EMPTY_LINES);

function processUser($user,$pass, array &$file) {
  $pass = md5($pass);
  if(in_array("$user|$pass", $file)) {
    addUser($user,$pass); // do you check if the query is good?
    return 'accepted';
  } 
  return "rejected";
}

var_dump(processUser('invaliduser','test2', $file));

答案 1 :(得分:20)

我认为你的if过于复杂 - 它是真的还是假的,所以不需要检查stristr两次!此外,您可能将您的真/假混淆。

编辑:此外,它应该是stripos,它将返回位置或false。

尝试......

if(stripos($theData,$login) === false){
    $result = "rejected";
} else {
    addUser($user,$pass); // this work I manuall tested
    $result = "accepted";
}

......那有用吗?