A PHP reversible encryption and decryption algorithm

Source: Internet
Author: User
Help a PHP reversible encryption and decryption algorithm
For example algorithm rules:
A=b
B=c
C=d
D=e
......
X=y
Y=z
Z=a
0=1
1=2
2=3
......
8=9
9=0
Letters and numbers are replaced by a certain size letter or number
Example:
Pre-encryption content: 123ABC
Encrypted into: 234def
This way, you can also decrypt the restore by replacing the rules
Please help me with this effect, thank you


Reply to discussion (solution)

$dict = Array (  ' a ' = = ' B ', ' b ' = = ' C ', ' c ' = = '  d ', ' d ' = ' e ', ' 0 ' = ' 1 ', '  1 ' => ; ' 2 ',  ' 2 ' = ' 3 ',  ' 3 ' = ' 4 ', ' echo $t = Strtr (' 123abc ', $dict), Php_eol;echo strtr ($t, Array_flip ($dict));
234bcd123abc

Thank you very much, it turned out to be these two functions

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.