PHPを使ってWEB上にある画像を自らのサーバー上に保存する。 スクレイピングやAPIを使用するときよく使うと思うのでメモ。 file_get_contents <?php $url = 'http://k.yimg.jp/images/top/sp/logo.gif'; $data = file_get_contents($url); file_put_contents('images/logo.jpg',$data); これはfile_get_contentsを使ったもの。 画像もバイナリとして扱うことで保存ができる。 cURL <?php $url = 'http://k.yimg.jp/images/top/sp/logo.gif'; $yahoo = curl_init(); curl_setopt( $yahoo, CURLOPT_URL, $url ); curl_set