diff --git a/reference/filesystem/functions/fopen.xml b/reference/filesystem/functions/fopen.xml index 88513e9339..03c5de5a9a 100644 --- a/reference/filesystem/functions/fopen.xml +++ b/reference/filesystem/functions/fopen.xml @@ -133,7 +133,7 @@ $handle = fopen("c:\\folder\\resource.txt", "r"); Open for writing only; 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 + In this mode, fseek only affects the reading position, writes are always appended. @@ -142,7 +142,7 @@ $handle = fopen("c:\\folder\\resource.txt", "r"); 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 + create it. In this mode, fseek only affects the reading position, writes are always appended.