Heim  >  Artikel  >  Backend-Entwicklung  >  HTTP远程下载文件

HTTP远程下载文件

WBOY
WBOYOriginal
2016-06-23 14:11:131163Durchsuche

fopen("http://www.xxxx.com/1.txt","r");//txt,xml可以打开
fopen("http://www.xxxx.com/1.php","r");//只能打开看到HTML相关内容,PHP代码不能看到
fopen("./1.php","r");//本地的话可以看到所有内容

请问:如何才能远程打开PHP文件内所有内容?


回复讨论(解决方案)

fopen("ftp://www.xxxx.com/1.php","r");

把数据放到session里面

fopen("ftp://www.xxxx.com/1.php","r");
版主大人,是不是通过http,url去fopen的话只能获取浏览器能够解析的内容?

http 会启动 php 解析器!你连着一点都不知道吗?

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn