$file = 'data.txt';
$searchline = 'php programming';
$content = file_get_contents($file);
$lines = explode("\n", $content);
$found = 0;
foreach ($lines as $line) {
if (trim($searchline) === trim($line)) {
$found = 1;
echo "found";
break;
}
}
if (!$found)
echo "not found";
/*
data.txt
--------
php programming
that is php programming to web development.
Searches subject for a match to the regular expression
At least php programming will be present within the array
php programming
Perform a global php programming match
php programming
Split string by a REGULAR EXPRESSION
*/
/*
run:
found
*/