How to search for exact text line within text file in PHP

1 Answer

0 votes
$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
 
*/

 



answered Aug 22, 2020 by avibootz

Related questions

1 answer 228 views
1 answer 182 views
3 answers 273 views
1 answer 110 views
1 answer 201 views
2 answers 327 views
327 views asked Jan 4, 2021 by avibootz
...