所以现在我使用下面的代码,但是如果外部文件是100mb则需要永远提示下载。如何立即提示下载并开始向用户下载流。
<?php
header( 'Content-Type: application/x-bittorrent' );
header( 'Content-Disposition: attachment; filename="torrent' );
echo file_get_contents("http://externallink.com/sizemorethan100mb");
?>
编辑:它不重复,重复的问题不提供外部网址的解决方案。