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 282 views
2 answers 310 views
310 views asked Jan 4, 2021 by avibootz
1 answer 196 views
196 views asked Jul 17, 2017 by avibootz
...