`fopen()` : description of `'a+'` mode
SuperUserNameMan opened this issue · 2 comments
SuperUserNameMan commented
From manual page: https://php.net/function.fopen
Translation has confusion between "happened" and "appended".
| 'a+'
| Ouvre en lecture et écriture ; place le pointeur de fichier à la fin du fichier. Si le fichier n'existe pas, on tente de le créer. Dans ce mode, la fonction fseek()
n'affecte que la position de lecture, les écritures surviennent toujours. les écritures sont toujours ajoutées à la fin
| 'a+'
| Open for reading and writing; place the file pointer at the end of the file. If the file does not exist, attempt to create it. In this mode, fseek()
only affects the reading position, writes are always appended.
Girgias commented
Could you open a PR?
SuperUserNameMan commented
Could you open a PR?
done