PHP – Returning the last line in a file?

The simplest naive solution is simply: $file = “/path/to/file”; $data = file($file); $line = $data[count($data)-1]; Though, this WILL load the whole file into memory. Possibly a problem (or not). A better solution is this: $file = escapeshellarg($file); // for the security concious (should be everyone!) $line = `tail -n 1 $file`;

How to read from stdin with fgets()?

here a concatenation solution: #include <stdio.h> #include <stdlib.h> #include <string.h> #define BUFFERSIZE 10 int main() { char *text = calloc(1,1), buffer[BUFFERSIZE]; printf(“Enter a message: \n”); while( fgets(buffer, BUFFERSIZE , stdin) ) /* break with ^D or ^Z */ { text = realloc( text, strlen(text)+1+strlen(buffer) ); if( !text ) … /* error handling */ strcat( text, … Read more

fgets instructions gets skipped.Why?

I’ll bet it’s because of the \n stuck in the input stream. See one of these questions: I am not able to flush stdin. How do I go about Flushing STDIN here? scanf() causing infinite loop or this answer. Also: Why not to use scanf(). P.S. fgets() is a function, not an instruction.

C – scanf() vs gets() vs fgets()

Never use gets. It offers no protections against a buffer overflow vulnerability (that is, you cannot tell it how big the buffer you pass to it is, so it cannot prevent a user from entering a line larger than the buffer and clobbering memory). Avoid using scanf. If not used carefully, it can have the … Read more