1

我有很多关于 torrent 的信息哈希,但无法将它们与任何此类 torrent 文件相关联,我正在尝试编写一个 PHP 程序来为我执行此操作并下载 torrent 文件。

在浏览器中,最后 40 位数字是信息哈希,

href="magnet:?xt=urn:btih:7ea1b59cce1737437a66e29a2843b5ce3a0c8cd9"

我试图像这样在php中下载文件,

$file = 'magnet:?xt=urn:btih:7ea1b59cce1737437a66e29a2843b5ce3a0c8cd9';
fopen($file, 'r');

但它不起作用??我究竟做错了什么?

4

1 回答 1

1

您可能想看看http://pear.php.net/package/File_Bittorrent2

于 2012-05-20T20:10:58.107 回答