$c = '4432';
$word = file_get_contents('1234.txt');
$value = explode(" ",$word);
for ($i = 0; $i < 3; $i++) {
if ($value[$i] = $c){
echo $value[$i];
break;
}
}
文件1234.txt内容:
1234 789
4432 998
5532 999
如何比较4432并分别得到值789?我需要:
if $c is 1234 then get 789 value
if $c is 4432 then get 998 value
if $c is 5532 then get 999 value
现在我的代码只能得到 1234 或 4432 或 5532。
BIG阳