0
writing to a file in php
whats is the difference between fopen(r+) and fopen(x+)
1 Antwort
0
In x+ created new file readable and writable.
If file exists error and return false.
In r+ if file exists open exiting file and else create a new file
whats is the difference between fopen(r+) and fopen(x+)