0
what is different between file and fopen
2 Answers
+ 1
file is what you manipulate, fopen is the function to open the file for r/w operations.
+ 1
fopen() - opens file for reading/writing/etc.
file() - opens file, then reads all content and closes it.