Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to check if the string that is being added to file is not already in the file and only then add it? Right now I am using

        $myFile = "myFile.txt";
    $fh = fopen($myFile, 'a') or die("can't open file");
    $stringData = $var . "\n";
    fwrite($fh, $stringData);
    fclose($fh);

But I get many duplicates of $var values and wanted to get rid of them. Thank you

share|improve this question
Can you more clarify the $var – Ranjit Mar 7 at 11:09
More information would make this question easier to answer. Is the file always newline delimited? Are the string fixed-length? Is the file small (feasible for file_get_contents) or gargantuan? – Bracketworks Mar 7 at 11:23

closed as too localized by tereško, Mihai Iorga, Rikesh, Bracketworks, hakre Mar 7 at 11:47

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

7 Answers

up vote 1 down vote accepted

use this

$file = file_get_contents("myFile.txt");
if(strpos($file, $var) === false) {
   echo "String not found!";
   $myFile = "myFile.txt";
   $fh = fopen($myFile, 'a') or die("can't open file");
   $stringData = $var . "\n";
   fwrite($fh, $stringData);
   fclose($fh);
}
share|improve this answer
1  
+1 almost same time :) – Rikesh Mar 7 at 11:10
1  
what if the string found at position 0 – Akam Mar 7 at 11:10
@Akam, it can be solved with strpos() === FALSE – fedorqui Mar 7 at 11:16
upvoting should only be for correct answer without any minor error :) – Akam Mar 7 at 11:17
1  
Just what I needed! Thank you very much! – user2130729 Mar 7 at 11:28
$myFile = "myFile.txt";
$filecontent = file_get_contents($myFile);
if(strpos($filecontent, $var) === false){
$fh = fopen($myFile, 'a') or die("can't open file");
$stringData = $var . "\n";
fwrite($fh, $stringData);
fclose($fh);
}else{
 //string found
}
share|improve this answer

Best way is use file_get_contents & perform operation only if $var is not in your file.

$myFile = "myFile.txt";
$file = file_get_contents($myFile);
if(strpos($file, $var) === FALSE) 
{
   $fh = fopen($myFile, 'a') or die("can't open file");
   $stringData = $var . "\n";
   fwrite($fh, $stringData);
   fclose($fh);
}
share|improve this answer
1  
if(!strpos("some text", "some")){ echo "not found"; } check this! – Akam Mar 7 at 11:14

Possible solution could be :

1. Fetch the contents using fread or file_get_contents
2. Compare the contents with the current contents in file
3. add it if it is not there.
share|improve this answer
function find_value($input) {

  $handle = @fopen("list.txt", "r");
   if ($handle) {
    while (!feof($handle)) {
     $entry_array = explode(":",fgets($handle));
     if ($entry_array[0] == $input) {
      return $entry_array[1];
     }
  }
 fclose($handle);
}
return NULL;
}

You can do the it like this also

$content = file_get_contents("titel.txt");
$newvalue = "word-searching";
//Then use strpos to find the text exist or not
share|improve this answer

you could save all your added string in an array and the check with in_array if the current string has been added or not.

Second choice is to read the file each time you want to write and do a strstr on it.

share|improve this answer

I believe fgets is the answer here.

$handle = fopen($path, 'r+');      // open the file for r/w
while (!feof($handle)) {            // while not end
    $value = trim(fgets($handle)); // get the trimmed line
    if ($value == $input) {        // is it the value?
        return;                    // if so, bail out
    }                              //
}                                  // otherwise continue
fwrite($handle, $input);           // hasn't bailed, good to write
fclose($handle);                   // close the file

This answer is based solely on the fact that you have appended a newline ("\n") in your code, which is why fgets will work here. This may be preferable over pulling the whole file into memory with file_get_contents(), simply because the size of the file may be prohibitive of that.

Alternatively, if the values are not newline delimited, but are fixed length, you can always use the $length argument of fgets() to pull exactly $n characters out (or use fread() to pull exactly $n bytes out)

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.