一 代码
class="php" name="code"><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>访问远程文件</title> </head> <body> <?php //访问远程文件 $filename = "http://jpgraph.net/download/manuals/chunkhtml/index.html"; //要读取的远程文件 $fp = fopen($filename,"rb"); //打开文件 echo fread($fp,1000); //使用fread()函数读取文件内容的前1000个字节 echo '<p>'; //通过readfile读取整个文件的内容 readfile("http://jpgraph.net/download/manuals/chunkhtml/index.html","r"); ?> </body> </html>
?
二 运行结果