最新消息: USBMI致力于为网友们分享Windows、安卓、IOS等主流手机系统相关的资讯以及评测、同时提供相关教程、应用、软件下载等服务。

种子转磁力链接php,Bt种子转磁力链

常识 admin 403浏览 0评论

种子转磁力链接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;

}

// 

发布评论

评论列表 (0)

  1. 暂无评论