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
This commit is contained in:
Wez Furlong 2002-09-26 11:40:49 +00:00
parent bfc5dfcaf1
commit 348ed507bb

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.20 $ -->
<!-- $Revision: 1.21 $ -->
<chapter id="features.remote-files">
<title>Using remote files</title>
@ -10,6 +10,8 @@
used with the <function>include</function>,
<function>include_once</function>, <function>require</function> and
<function>require_once</function> statements.
See <xref linkend="wrappers"/> for more information about the protocols
supported by <literal>PHP</literal>.
</para>
<note>
<para>
@ -21,10 +23,12 @@
<para>
<note>
<para>
The Windows version of <literal>PHP</literal> currently does not support
remote file accessing for the following functions:
The Windows versions of <literal>PHP</literal> earlier than PHP 4.3
did not support remote file accessing for the following functions:
<function>include</function>, <function>include_once</function>,
<function>require</function>, and <function>require_once</function>.
<function>require</function>, <function>require_once</function>,
and the imagecreatefromXXX functions in the <xref linkend="ref.image"/>
extension.
</para>
</note>
</para>
@ -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 <function>fopen</function> will
a file that already exists, the <function>fopen</function> call will
fail.
</para>
<para>