您的位置:首页 > 编程语言 > PHP开发

php 抓取远程资源代码

2016-05-26 11:22 471 查看
使用到的php内置函数

1,file_get_contents();//获取远程资源的内容

2,is_dir();//验证文件夹是否存在

3,fopen();//创建或打开文件

4,file_put_contents();

5,fclose();

6,file_exists();

7,parse_url();

<?php

$url="http://www.runoob.com/wp-content/themes/w3cschool.cc/assets/img/qrcode.jpg";

function getimg($url){

$file=file_get_contents($url);

$urlarr=parse_url($url);

$filename=basename($urlarr['path']);

if(!(is_dir('./img'))){

mkdir("./img");

}

$handle=fopen("./img/$filename",'w');

fwrite($handle,$file);

fclose($handle);

}

getimg($url);

?>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息