How to read the last character of a text file in PHP

1 Answer

0 votes
/*
int fseek ( resource $handle , int $offset [, int $whence = SEEK_SET ] )
*/

$fp = fopen('e:/test.txt', 'r');
fseek($fp, -1, SEEK_END);
echo fgetc($fp) . "<br />";

// The file content:
// PHP For web applications Is popular on the net@
 
/*
run:

@

*/

 



answered Dec 14, 2015 by avibootz

Related questions

2 answers 294 views
2 answers 327 views
327 views asked Jan 4, 2021 by avibootz
1 answer 205 views
205 views asked Jul 17, 2017 by avibootz
...