原理很簡單 就是base64演算法以及字串處理:
<?php //迅雷链接普通链接转换工具 $url=$_GET['url'];//获取链接 if($url[0]=='t'&&$url[7]==':')//链接为迅雷专用链 解密 { $str1 = substr($url,10); $tmp=base64_decode($str1); $tmp=substr($tmp,2,-2); echo $tmp; } else{//链接为普通链接 加密 $tmp='AA'.$url.'ZZ'; $tmp2=base64_encode($tmp); $tmp3='thunder://'.$tmp2; echo $tmp3;} ?>
以上就介紹了php實作迅雷連結的加密解密,包括了面向的內容,希望對PHP教學有興趣的朋友有幫助。