画像ダウンロードの実装方法
こんなアドレスがあります このアドレスを開くと画像になります http://qr.topscan.com/api.php?text=x
こんな機能を実装したいです
1.html
クリックして画像をダウンロード
1.php
$filename = http://qr.topscan.com/api.php?text=x
header('Content-type: image/jpeg');
header("Content-Disposition:attachment; filename='$ filename'");
写真をダウンロードする方法がありません。
----------
の書き方を教えてください。 自分が何をしているのか理解できませんか? クリックして画像をダウンロード
画像を表示する場合、1.php は
画像を表示する場合画像をダウンロードしてから、1.php
echo file_get_contents('http://qr.topscan.com/api.php?text=x');
$s = file_get_contents('http://qr.topscan.com/api.php?text=x');<br />Header("Content-type: application/force-download");<br />Header("Accept-Ranges:bytes");<br />Header("Accept-Length:" . strlen($s));<br />Header("Content-Disposition: attachment; filename=x.png");<br />echo $s;<br />