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); ?> Quote 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); ?> Quote 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 Quote 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 Quote 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 Quote 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!! Quote 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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.