Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fopen() : description of 'a+' mode #546

Closed
SuperUserNameMan opened this issue Jul 9, 2023 · 2 comments · Fixed by #550
Closed

fopen() : description of 'a+' mode #546

SuperUserNameMan opened this issue Jul 9, 2023 · 2 comments · Fixed by #550

Comments

@SuperUserNameMan
Copy link
Contributor

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
Copy link
Member

Girgias commented Jul 10, 2023

Could you open a PR?

SuperUserNameMan added a commit to SuperUserNameMan/doc-fr that referenced this issue Jul 10, 2023
Translation has confusion between "happened" and "appended".
Closes php#546
@SuperUserNameMan
Copy link
Contributor Author

Could you open a PR?

done

Girgias pushed a commit that referenced this issue Jul 10, 2023
Translation has confusion between "happened" and "appended".
Closes #546
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants