From 73283f81e80ddc8df277f76122c2f042aa16a73e Mon Sep 17 00:00:00 2001 From: Sara Golemon Date: Mon, 30 Jun 2003 18:21:03 +0000 Subject: [PATCH] Clarify behavior of fread on network streams. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@133790 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/filesystem/functions/fread.xml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/reference/filesystem/functions/fread.xml b/reference/filesystem/functions/fread.xml index d2ee8b6eb3..53aa6b4790 100644 --- a/reference/filesystem/functions/fread.xml +++ b/reference/filesystem/functions/fread.xml @@ -1,5 +1,5 @@ - + @@ -17,8 +17,9 @@ fread reads up to length bytes from the file pointer referenced by handle. Reading stops when - length bytes have been read or EOF - (end of file) reached, whichever comes first. + length bytes have been read, EOF + (end of file) is reached, or (for network streams) when a + packet becomes available, whichever comes first.