如果值存在,我正在使用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 在 domain.txt 中可用,所以它应该返回 true,但我坚持下去,请帮助,谢谢。