Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,879 questions

51,805 answers

573 users

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 168 views
1 answer 151 views
3 answers 233 views
1 answer 89 views
1 answer 174 views
2 answers 283 views
283 views asked Jan 4, 2021 by avibootz
...