将文件每一行的第一个单词与 php 中的变量进行比较

Compare first word of each line of a file to a variable in php

我刚刚开始 php,但我找不到一种简单的方法来比较格式为(“用户 ID 名字 姓氏 密码”)的文本文件行的每个第一个单词与变量.

<?php
     $mf = fopen("users.txt", "r") or die("Unable to open user database file!");
     $fc = file_get_contents('users.txt');
     $cv = "userid";
     if($fc == $cv) {
          //the contents of the file contain userid
     }
     fclose($mf);
?>

这不是您想要的,但它应该能引导您朝着正确的方向前进。您将不得不研究解析每行的第一个单词并将其与变量进行比较。用解析替换if语句。