如果值存在,我正在使用in_array
搜索数组。我的代码如下:
$file = 'domains.txt'; //reading txt file
$lines = file($file);//file in to an array
if (in_array("yahoo.com", $lines)) {
echo "Got Domain";
}
然而,它不起作用,它只显示一个空白页面,但是yahoo.com在domains.txt中可用,所以它应该返回true,但我坚持使用它,请帮助,谢谢。