Приглашаем посетить
Северянин (severyanin.lit-info.ru)

Section 13.14.  Remote Files

Previous
Table of Contents
Next

13.14. Remote Files

The fopen( ) function allows you to manipulate any files for which you have permission. However, its usefulness is only just beginning, because you can specify remote files as well as local fileseven files stored on HTTP and FTP servers. PHP automatically opens a HTTP/FTP connection for you, returning the file handle as usual. For all intents and purposes, a file handle returned from a remote file is good for all the same uses as a local file handle.

This example displays the Slashdot web site through your browser:

    $slash = fopen("http://www.slashdot.org", "r");
    $site = fread($slash, 200000);
    fclose($slash);
    print $site;

The r mode is specified because web servers do not allow writing through HTTP (without WebDAV), and some will even deny access for reading if you are an anonymous visitor, as PHP normally is.

Section 13.14.  Remote Files

If you are looking to find a quick way to execute an external script, try using fopen( ). For example, to call foo.php on example.com, use fopen("www.example.com/foo.php", "r"). You need not bother reading in the resultssimply opening the connection is enough to make the server on example.com process the contents of foo.php.



Previous
Table of Contents
Next