Home  >  Article  >  php教程  >  QQ会员签到中用到的gtk算法

QQ会员签到中用到的gtk算法

PHP中文网
PHP中文网Original
2016-05-23 17:09:552250browse

php代码

<?php
 /*
 * 为你一人
*/
 
function getk($skey){
    $salt=5381;
    $md5key=&#39;tencentQQVIP123443safde&!%^%1282&#39;;
    $hash=array();
    $hash[]=$salt<<5;
    for ($i=0; $i<strlen($skey); ++$i) {
       $acode=ord(substr($skey,$i,1));
       $hash[]=($salt<

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn