รบกวนแปลง โค้ดการเข้ารหัสของ ASP.Net อันนี้ เป็นภาษา PHP หน่อยได้ไหมครับ ขอบพระคุณมากครับ
Code (ASP)
Function Encrypt(Text)
For Char = 1 To LEN(Text)
TextCharCode = ASC(MID(Text,Char,1))
PasswordCharCode = ASC(MID(Key,(Char MOD LEN(Key) + 1),1))
NewCharCode = TextCharCode + PasswordCharCode
If NewCharCode > 255 Then NewCharCode = NewCharCode - 255
Encrypt = Encrypt & CHR(NewCharCode)
NEXT
End function