vivien Posted May 9, 2011 Share Posted May 9, 2011 just a newbie in php i got the code in this forum and it really works, but not that exact, it can really compare word from array to per line in a file. but what im trying to do is, to compare the exact word/number. if(strstr($line,$key)) echo $line; if $key = 123 and line 1 is 1234 and line 2 is 123 it will still output line1 $key = "waka"; $fc = file("file.txt"); $f = fopen("file.txt","r"); foreach($fc as $line) { if(strstr($line,$key) echo 4line; } fclose($f); ?> Link to comment https://forums.phpfreaks.com/topic/235898-compare-the-exact-words-or-numbers/ Share on other sites More sharing options...
Zurev Posted May 9, 2011 Share Posted May 9, 2011 Why don't you use == or === <?php $key = "waka"; $fc = file("file.txt"); $f = fopen("file.txt","r"); foreach($fc as $line) { if($line==$key) echo 4line; } fclose($f); ?> Link to comment https://forums.phpfreaks.com/topic/235898-compare-the-exact-words-or-numbers/#findComment-1212676 Share on other sites More sharing options...
vivien Posted May 9, 2011 Author Share Posted May 9, 2011 i tried it but it did'nt print anything Link to comment https://forums.phpfreaks.com/topic/235898-compare-the-exact-words-or-numbers/#findComment-1212677 Share on other sites More sharing options...
Zurev Posted May 9, 2011 Share Posted May 9, 2011 Well 4line won't, $line will Link to comment https://forums.phpfreaks.com/topic/235898-compare-the-exact-words-or-numbers/#findComment-1212680 Share on other sites More sharing options...
vivien Posted May 9, 2011 Author Share Posted May 9, 2011 haha..i just mispelled my code here. its really $line in editor Link to comment https://forums.phpfreaks.com/topic/235898-compare-the-exact-words-or-numbers/#findComment-1212683 Share on other sites More sharing options...
vivien Posted May 9, 2011 Author Share Posted May 9, 2011 ok. i think i solved it already i explode it first then compare it!! Link to comment https://forums.phpfreaks.com/topic/235898-compare-the-exact-words-or-numbers/#findComment-1212694 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.