- 论坛徽章:
- 0
|
我用了如下代码来下载.torrent文件:
if( isset( $_REQUEST["download"] ) )
{
$tfile = _REQUEST["download"];
// ../ is not allowed in the file name
if (!ereg("(\.\.\/)", $tfile))
{
// Does the file exist?
if (file_exists($tpath . $tfile))
{
// Prompt the user to download the new torrent file.
header( "Content-type: application/octet-stream\n" );
header( "Content-disposition: attachment; filename=" . $tfile . "\n" );
header( "Content-transfer-encoding: binary\n");
header( "Content-length: " . @filesize( $tpath . $tfile ) . "\n" );
// Send the torrent file
$fp = @fopen( $tpath . $tfile, "r" );
@fpassthru( $fp );
@fclose( $fp );
}
}
exit();
}
该代码是用来实现从https服务器下载.torrent文件的。
其中,tpath表示文件的路径。
该方法我用firefox2.0.3可以下载成功。
用opera9.23,也可以下载,但是它让我保存的文件名后缀为.htm(原本是.torrent文件)。
用IE-7的话,干脆就不能下载。
用IE-6,也不能下载,但是可以打开。
请教各位大侠,帮小弟看看怎么回事。
多谢多谢!!
[ 本帖最后由 goooogo 于 2007-9-18 15:17 编辑 ] |
|