我找到了这个脚本,我希望下载时图像的名称与 URL 变量相同。那可能吗?如果是这样,人们将如何做到这一点?我的脚本是...
<?php
header('Content-Type: image/png');
header('Content-Disposition: attachment; filename="EDITTHIS"');
echo file_get_contents("http://domain.tld/folder/" . $_GET["m"] . ".png");
?>
谢谢你。