hello,
I tried to open a file with a file-wrapper "file:///". I used no path information, so (according to the documentation) php should consider as if the location was the current directory.
fopen("file://log.txt","r+");
I got these:
the "file:///" wrapper doesn't depend on the "allow_url_fopen" configuration, according to the documentation. anyway, the allow_url_fopen was settted to On. Other configurations....affecting the file:// wrapper..., I think, there don't exist...
- the second warning derives from the first, I think....
Can anyone give me an advice or a tutorial link, about the filesystem wrappers? how can I open a file using them???