欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

PHP远程访问文件

程序员文章站 2022-03-05 13:30:30
...

一 代码

<!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>

 

二 运行结果
PHP远程访问文件
            
    
    博客分类: PHP PHP远程访问文件 
 
  • PHP远程访问文件
            
    
    博客分类: PHP PHP远程访问文件 
  • 大小: 29.7 KB