which files may read by a php? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

which files may read by a php?

this question is asked for the purpose that the file is created by php is only allowed to read or other files can be allowed to read by php

2nd Nov 2016, 3:04 AM
karthik lakshmanan
karthik lakshmanan - avatar
1 Answer
- 1
Good ! that's is a cool question.. basically all files are stored as 1s and 0s in memory . It's basically the contents represented differ .. for example A text file contains set of ASCII value image files also contains 1s and 0s. but there it represents the color value of pixels on the screen it's not about which file it's all about the file function that you use to read or write example fopen() fread() fwrite() are functions in PHP to manage basic text file json_encode() used for reading json files etc..
2nd Nov 2016, 7:38 AM
Paul P Joby
Paul P Joby - avatar