ホームページ  >  記事  >  php教程  >  php 采集其它服务器文件程序

php 采集其它服务器文件程序

WBOY
WBOYオリジナル
2016-06-06 19:45:001023ブラウズ

php教程 采集其它服务器文件程序 */ header(pragma:no-cachern); header(cache-control:no-cachern); header(expires:0rn); $rmurl = http://www.php100.com/demodata.txt; $infostring = file_get_contents($rmurl) or die(连接远程网址失败!); $infos = s

php教程 采集其它服务器文件程序
*/
header("pragma:no-cachern");
  header("cache-control:no-cachern");
  header("expires:0rn");
  $rmurl = "http://www.php100.com/demodata.txt";
  
 $infostring = file_get_contents($rmurl) or die("连接远程网址失败!");
 $infos = split(‘,’,$infostring);
 $maxnum  =count($infos);
  $rmurl = trim($infos[rand(0,$maxnum-1)]);
  
  $zipbin = file_get_contents($rmurl);
 $fp = fopen(dirname(__file__).’/dedev56demo.zip’,'w’);
 fwrite($fp,$zipbin);
 unset($zipbin);
 fclose($fp);

爱分享 ? php 采集其它服务器文件程序

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。