我从文件中下载了数据并将其保存到表中,然后我尝试搜索数组并写入“找到匹配”(如果它在表中),如果我没有写“找不到匹配”
我的档案凭证.txt
ub65rf
98huf4
YbyR42
我的代码 PHP
$array = [];
$array = file('voucher.txt');
$find = '98huf4';
if (in_array($find, $array))
{
echo "Match found";
}
else
{
echo "Match not found";
}
米脂