Saving image from PHP URL

后端 未结 12 1724
日久生厌
日久生厌 2020-11-21 17:10

I need to save an image from a PHP URL to my PC. Let\'s say I have a page, http://example.com/image.php, holding a single \"flower\" image, nothing else. How ca

12条回答
  •  北恋
    北恋 (楼主)
    2020-11-21 17:54

    See file()PHP Manual:

    $url    = 'http://mixednews.ru/wp-content/uploads/2011/10/0ed9320413f3ba172471860e77b15587.jpg';
    $img    = 'miki.png';
    $file   = file($url);
    $result = file_put_contents($img, $file)
    

提交回复
热议问题