Section 13.14. Remote Files


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.

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.




PHP in a Nutshell
Ubuntu Unleashed
ISBN: 596100671
EAN: 2147483647
Year: 2003
Pages: 249

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net