来吧兄弟,一起玩一起讨论!
您需要 登录 才可以下载或查看,没有账号?注册
×
本帖最后由 Elite710 于 2012-12-27 03:16 编辑
在functions.php加入这个函数
function get_seed_status($torrentid,$curuserid)
{ $res = sql_query("SELECT seeder FROM peers WHERE userid = ".sqlesc($curuserid)." AND torrent=".sqlesc($torrentid));
$row = mysql_fetch_array($res);
$ts = $row[0];
if($ts=='no')
{
$res1 = sql_query("SELECT size FROM torrents WHERE id=".sqlesc($torrentid));
$row1 = mysql_fetch_array($res1);
$ts1 = $row1[0];
$res2 = sql_query("SELECT to_go FROM peers WHERE userid = ".sqlesc($curuserid)." AND torrent=".sqlesc($torrentid));
$row2 = mysql_fetch_array($res2);
$ts2 = $row2[0];
//$percent = sprintf("%.2f%%", 100 * (1 - ($ts2 / $ts1)))*100;
$percent = intval(( 1-($ts2 / $ts1) ) * 100) ;
if($percent<100)
$img = print("<br><img width=\"".$percent."%\" height=\"10px\" alt=\"SeedDownloadingPercent\" title=\"".$percent."%\" src=\"seednotdone.gif\" />");
else
$img = print("<br><img width=\"1%\" height=\"10px\" alt=\"SeedDownloadingPercent\" title=\"Downloading...\" src=\"seednotdone.png\" />");
}
elseif($ts=='yes') $img =print("<br><img width=\"100%\" height=\"10px\" alt=\"SeedDone\" title=\"100%Seeding\" src=\"seeddone.png\" />");
elseif(!$ts) $img = "";
return $img;
}
seednotdone.png 和 seeddone.png这两个是种子完成进度 条图,放在网站根目录就好
继续在functions里搜索if ($CURUSER["dlicon"] != 'no' && $CURUSER["downloadpos"] != "no")
在 $act = ""; 之上 加入
get_seed_status($row["id"],$CURUSER['id']);
即可
俺不上图了。。做成的可以上图瞧瞧。
gif图也可以用
|