种子转磁力链接php,Bt种子转磁力链
test.php
include 'BEncode.php';
include 'BDecode.php';
$torrent_content = file_get_contents('filename.torrent');
$desc = BDecode($torrent_content);
$info = $desc['info'];
$hash = strtoupper(sha1( BEncode($info) ));
sprintf('magnet:?xt=urn:btih:%s&dn=%s', $hash, $info['name']);
BEncode.php
class BEncode {
function makeSorted($array) {
// Shouldn't happen!
if (empty($array))
return $array;
$i = 0;
foreach($array as $key => $dummy)
$keys[$i++] = stripslashes($key);
sort($keys);
for ($i=0; isset($keys[$i]); $i++)
$return[addslashes($keys[$i])] = $array[addslashes($keys[$i])];
return $return;
}
// Encodes strings, integers and empty dictionaries.
// $unstrip is set to true when decoding dictionary keys
function encodeEntry($entry, &$fd, $unstrip = false) {
if (is_bool($entry)) {
$fd .= 'de';
return;
}
if (is_int($entry) || is_float($entry)) {
$fd .= 'i'.$entry.'e';
return;
}
if ($unstrip)
$myentry = stripslashes($entry);
else
$myentry = $entry;
$length = strlen($myentry);
$fd .= $length.':'.$myentry;
}
//
种子转磁力链接php,Bt种子转磁力链
test.php
include 'BEncode.php';
include 'BDecode.php';
$torrent_content = file_get_contents('filename.torrent');
$desc = BDecode($torrent_content);
$info = $desc['info'];
$hash = strtoupper(sha1( BEncode($info) ));
sprintf('magnet:?xt=urn:btih:%s&dn=%s', $hash, $info['name']);
BEncode.php
class BEncode {
function makeSorted($array) {
// Shouldn't happen!
if (empty($array))
return $array;
$i = 0;
foreach($array as $key => $dummy)
$keys[$i++] = stripslashes($key);
sort($keys);
for ($i=0; isset($keys[$i]); $i++)
$return[addslashes($keys[$i])] = $array[addslashes($keys[$i])];
return $return;
}
// Encodes strings, integers and empty dictionaries.
// $unstrip is set to true when decoding dictionary keys
function encodeEntry($entry, &$fd, $unstrip = false) {
if (is_bool($entry)) {
$fd .= 'de';
return;
}
if (is_int($entry) || is_float($entry)) {
$fd .= 'i'.$entry.'e';
return;
}
if ($unstrip)
$myentry = stripslashes($entry);
else
$myentry = $entry;
$length = strlen($myentry);
$fd .= $length.':'.$myentry;
}
//