|
|
|
ขอคำสั่งแบ่งคำ หรือคำชี้แนะด้วยคับ...นี่คือค่าที่ได้จาก การแปลง MD5 e1faffb3e614e6c2fba74296962386b7 |
|
|
|
|
|
|
|
$arr1 = substr(md5(trim($pass)),0,1);
$arr2 = substr(md5(trim($pass)),2,3);
$arr3 = substr(md5(trim($pass)),4,5);
มั๊งคะ แหะๆ
ลองดูเว็บนี้ได้นะคะ ^___^ ..>>>
|
|
|
|
|
Date :
2011-04-05 15:51:12 |
By :
mintf |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คนตอบน่ารักดีคับ
ขอบคุณที่แนะนำนะคับ
แต่มันยังไม่ใช่ พอดีผมทำได้แล้ว เลยฝากไว้ เพื่อครั้งต่อไปได้ใช้ จะได้มาค้นของตัวเอง
$val = $_REQUEST['password'];
$chr16 = md5($val);
//echo $chr16."<br>";
//strlen($chr16);
$aa = 16;//strlen($chr16); //32
$j = 0;
for($i = 0;$i<=$aa-1;)
{
$arr[$j] = substr($chr16, $i*2,2);
//echo $arr[$j] ."<br>";
$hex .= hexdec($arr[$j]); // แปลงฐาน 16 เป็น 10
echo chr($hex); // แปลง chr
$j = $j+1;
$i = $i+1;
}
|
|
|
|
|
Date :
2011-04-05 16:04:29 |
By :
text |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|