From 348ed507bbacd11fbd67c96d788ed75eb09d62a0 Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Thu, 26 Sep 2002 11:40:49 +0000 Subject: [PATCH] include/require and GD imagecreatefromXXX functions now work with remote files under win32. # NB: at my school, we were taught that "item, item and item" was correct # while "item, item, and item" was incorrect grammar. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@96990 c90b9560-bf6c-de11-be94-00142212c4b1 --- features/remote-files.xml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/features/remote-files.xml b/features/remote-files.xml index 73fff580a6..b562b48765 100644 --- a/features/remote-files.xml +++ b/features/remote-files.xml @@ -1,5 +1,5 @@ - + Using remote files @@ -10,6 +10,8 @@ used with the include, include_once, require and require_once statements. + See for more information about the protocols + supported by PHP. @@ -21,10 +23,12 @@ - The Windows version of PHP currently does not support - remote file accessing for the following functions: + The Windows versions of PHP earlier than PHP 4.3 + did not support remote file accessing for the following functions: include, include_once, - require, and require_once. + require, require_once, + and the imagecreatefromXXX functions in the + extension. @@ -63,7 +67,7 @@ fclose($file); You can also write to files on an FTP server (provided that you have connected as a user with the correct access rights). You can only create new files using this method; if you try to overwrite - a file that already exists, the fopen will + a file that already exists, the fopen call will fail.