From 01ce565305ded280d0c4d81d0dc88d3489f54766 Mon Sep 17 00:00:00 2001 From: Peter Cowburn Date: Mon, 10 Aug 2015 14:50:08 +0000 Subject: [PATCH] fix markup git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@337389 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/filesystem/functions/fopen.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.