From 7af997f9451e0b45089a208fe6a9e405b368973b Mon Sep 17 00:00:00 2001 From: Kalle Sommer Nielsen Date: Thu, 18 Mar 2010 17:36:00 +0000 Subject: [PATCH] Fixed bug #51200 (file_get_contents() and "offset" & "length" misunderstanding) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@296352 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/filesystem/functions/file-get-contents.xml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/reference/filesystem/functions/file-get-contents.xml b/reference/filesystem/functions/file-get-contents.xml index cf4415bafa..e2cdfc8422 100644 --- a/reference/filesystem/functions/file-get-contents.xml +++ b/reference/filesystem/functions/file-get-contents.xml @@ -137,7 +137,7 @@ offset - The offset where the reading starts. + The offset where the reading starts on the original stream. @@ -146,7 +146,8 @@ Maximum length of data read. The default is to read until end - of file is reached. + of file is reached. Note that this parameter is applied to the + stream processed by the filters.