2007年3月14日

摘要: php的 function passport_encrypt($txt, $key) { srand((double)microtime() * 1000000); $encrypt_key = md5(rand(0, 32000)); $ctr = 0; $tmp = ''; for($i = 0;$i < strlen($txt); $i++) { ... 阅读全文

posted @ 2007-03-14 11:12 古代 阅读(445) 评论(0) 推荐(0)