学堂 学堂 学堂公众号手机端

使用file_get_contents()函数下载图片: $url='https://example.com/image.jpg'; $image=

lewis 1年前 (2024-02-02) 阅读数 5 #技术

  1. 使用file_get_contents()函数下载图片:
$url='https://example.com/image.jpg'; $image=file_get_contents($url); file_put_contents('image.jpg',$image);
  • 使用cURL下载图片:
  • $url='https://example.com/image.jpg'; $ch=curl_init($url); $fp=fopen('image.jpg','wb'); curl_setopt($ch,CURLOPT_FILE,$fp); curl_setopt($ch,CURLOPT_HEADER,0); curl_exec($ch); curl_close($ch); fclose($fp);
  • 使用copy()函数下载图片:
  • $url='https://example.com/image.jpg'; copy($url,'image.jpg');

    注意:在使用这些方法下载图片时,需要确保服务器具有足够的权限来保存文件。


    版权声明

    本文仅代表作者观点,不代表博信信息网立场。

    热门