只需这样做:
获取链接:
$contents=file_get_contents("link-to-file");
放内容:
file_put_contents("a temp path-with-file-type",$contents);
将用户带到文件:
header("location:your-temp-path-here");
可能不是最好的方法,但它有效......
$_GET
此外,如果您打算通过使用或链接使其稍微动态$_POST
化,您应该注意;这会打开一个严重的安全漏洞,你不应该这样做。