Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a script that each time is called gets the 1st line of a file. Each line is known to be exactly of the same length (32 alphanumerci chars) and terminates with a "\r\n". After getting the 1st line, the script removes it.

Now I do in this way:

$contents = file_get_contents($file));
$first_line = substr($contents, 0, 32);
file_put_contents($file, substr($contents, 32 + 2)); //+2 because we remove also the \r\n

Obvioulsy it works, but I was wondering if there could be a smarter (or more efficent) way to do this???

In my simple solution I basically read and rewrite all the file just to take and remove the 1st line.

Thanks!

share|improve this question
You can make this more efficient in memory (do a loop, read one line at a time, write them out one at a time except for the first one), but it will look convoluted and will be error-prone. I'd do the same as you. There's no getting around the fact that files are stored sequentially, starting from the first byte. – Seva Alekseyev Mar 8 '10 at 21:25
if you could store the file as an indexed, and perform all R/W through the index, perhaps this operation would be faster as you can just simply remove that line from the index and doing so would be cheaper than doing this operation on a complete file. However if the file is small then cost of I/O would be less than the overhead of maintaining the index. – anijhaw Mar 8 '10 at 21:26
2  
The only highly optimal solution to a similar problem that I can think of would involve an IOCTL in the file system driver that would snip the first logical block (of hardware- and implementation-dependent size) from the file without touching the rest. But this is an academic excercise in solving the nonexistent problem, and definitely not what you're after. :) – Seva Alekseyev Mar 8 '10 at 21:28

7 Answers

up vote 7 down vote accepted

There is no more efficient way to do this other than rewriting the file.

share|improve this answer
why the downvote? – Byron Whitlock Nov 28 '11 at 23:44

I wouldn't usually recommend opening up a shell for this sort of thing, but if you're doing this infrequently on really large files, there's probably something to be said for:

$lines = `wc -l myfile` - 1;
`tail -n $lines myfile > newfile`;

It's simple, and it doesn't involve reading the whole file into memory.

I wouldn't recommend this for small files, or extremely frequent use though. The overhead's too high.

share|improve this answer
2  
This isn't efficient in anyway and also the code isn't portable – anijhaw Mar 8 '10 at 21:23
1  
For, say, a 3 gigabyte file, this'll be a lot more efficient than most of the answers posted here. Most of the posted answers will die with out of memory errors on large files. You're right that it isn't portable though. There's a very specific set of circumstances in which this solution would be useful/acceptable. – Frank Farmer Mar 8 '10 at 23:12

You could use file() method.

Gets the first line

$content = file('myfile.txt');
echo $content[0];  
share|improve this answer
This worked great for me. I have no idea why someone marked you down for it. Thanks. I tried to vote you up, but you're still at 0. :) – bozdoz May 28 '11 at 21:58

You could store positional info into the file itself. For example, the first 8 bytes of the file could store an integer. This integer is the byte offset of the first real line in the file.

So, you never delete lines anymore. Instead, deleting a line means altering the start position. fseek() to it and then read lines as normal.

The file will grow big eventually. You could periodically clean up the orphaned lines to reduce the file size.

But seriously, just use a database and don't do stuff like this.

share|improve this answer

Here's one way:

$contents = file($file, FILE_IGNORE_NEW_LINES);
$first_line = array_shift($contents);
file_put_contents($file, implode("\r\n", $contents));

There's countless other ways to do that also, but all the methods would involve separating the first line somehow and saving the rest. You cannot avoid rewriting the whole file. An alternative take:

list($first_line, $contents) = explode("\r\n", file_get_contents($file), 2);
file_put_contents($file, implode("\r\n", $contents));
share|improve this answer
Your first example will generate redundant newlines. Without the FILE_IGNORE_NEW_LINES flag for file() you don't need to implode() the lines with newlines again. – fireeyedboy Mar 8 '10 at 21:11
@fireeyedboy, true that, fixed. – Tatu Ulmanen Mar 8 '10 at 22:34
Ulman: +1 very interesting code, thanks! I never used file function before. – Marco Demaio Mar 9 '10 at 18:31

I came up with this idea yesterday:

function read_and_delete_first_line($filename) {
  $file = file($filename);
  $output = $file[0];
  unset($file[0]);
  file_put_contents($filename, $file);
  return $output;
}
share|improve this answer
You still read and rewrite the entrie file, but I admit it's a little bit better. +1 – Marco Demaio Jan 31 '12 at 17:36

you can iterate the file , instead of putting them all in memory

$handle = fopen("file", "r");
$first = fgets($handle,2048); #get first line.
$outfile="temp";
$o = fopen($outfile,"w");
while (!feof($handle)) {
    $buffer = fgets($handle,2048);
    fwrite($o,$buffer);
}
fclose($handle);
fclose($o);
rename($outfile,$file);
share|improve this answer
+1: I think this is more memory efficient, but not more fast. Certantly it won't blow up if the file is too big to fit in memory. – Marco Demaio May 18 '11 at 14:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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