美文网首页
PHP(17)爬取URL数据并保存达到本地

PHP(17)爬取URL数据并保存达到本地

作者: 弗兰克万岁 | 来源:发表于2023-02-27 22:03 被阅读0次
<?php
dlfile($v['spic'],"./image/".$v['product'].".jpg");
?>
function dlfile($file_url, $save_to)

{

$ch = curl_init();

curl_setopt($ch, CURLOPT_POST, 0); 

curl_setopt($ch,CURLOPT_URL,$file_url); 

curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 

$file_content = curl_exec($ch);

curl_close($ch);

$downloaded_file = fopen($save_to, 'w');

fwrite($downloaded_file, $file_content);

fclose($downloaded_file);

}

相关文章

网友评论

      本文标题:PHP(17)爬取URL数据并保存达到本地

      本文链接:https://www.haomeiwen.com/subject/mrekldtx.html