<?php
$a = 'grzn.txt';
if (strpos($a, 'word') !== false)
{
echo 'Found';
}
?>
我如何检查“word”是否在文本文件“grzn.txt”中? &安培;感谢
答案 0 :(得分:2)
您应该在文本内容中搜索,而不是在文件名中搜索。
使用file_get_contents
功能:
$a = 'grzn.txt';
if (strpos(file_get_contents($a), 'word') !== false) echo 'found';