Problem Statement
Explain the concept of file pointer in PHP file handling.
Explanation
A file pointer represents the current position in an open file. Each read or write operation moves the pointer forward. You can manually reposition it using functions like fseek and rewind.
Code Solution
SolutionRead Only
fseek($handle,0);
