画像をダウンロード1.phpをクリックします"/> 画像をダウンロード1.phpをクリックします">
ホームページ >バックエンド開発 >PHPチュートリアル >写真をダウンロードする方法
画像ダウンロードの実装方法
こんなアドレスがあります このアドレスを開くと画像になります http://qr.topscan.com/api.php?text=x
こんな機能を実装したいです
1.html
5936e44f72c63cc16264b86b5ad2cddfクリックして画像をダウンロード5db79b134e9f6b82c0b36e0489ee08ed
1.php
$filename = http://qr.topscan.com/api.php?text=x
header('Content-type: image/jpeg');
header("Content-Disposition:attachment; filename='$ filename'");
写真をダウンロードする方法がありません。
----------
の書き方を教えてください。 自分が何をしているのか理解できませんか? 5936e44f72c63cc16264b86b5ad2cddfクリックして画像をダウンロード5db79b134e9f6b82c0b36e0489ee08ed
画像を表示する場合、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 />