Jump to content

compare the exact words or numbers


vivien

Recommended Posts

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
Share on other sites

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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.