初夏的脚步刚刚走来,人们纷纷把厚重的单衣脱掉,换上了凉爽的短袖,又把旅游鞋换成了颜色各不相同的夹鞋,有淡绿色的;有洁白的;还有深蓝色的……
本文实例讲述了PHP实现的ID混淆算法类与用法。分享给大家供大家参考,具体如下:
<?php /** * ID混淆算法 */ class IdCrypt { /** * 对整数id进行可逆混淆 */ public static function encodeId($id) { $sid = ($id & 0xff000000); $sid += ($id & 0x0000ff00) << 8; $sid += ($id & 0x00ff0000) >> 8; $sid += ($id & 0x0000000f) << 4; $sid += ($id & 0x000000f0) >> 4; $sid ^= 11184810; return $sid; } /** * 对通过encodeId混淆的id进行还原 */ public static function decodeId($sid) { if (!is_numeric($sid)) { return false; } $sid ^= 11184810; $id = ($sid & 0xff000000); $id += ($sid & 0x00ff0000) >> 8; $id += ($sid & 0x0000ff00) << 8; $id += ($sid & 0x000000f0) >> 4; $id += ($sid & 0x0000000f) << 4; return $id; } } $idstr = new IdCrypt(); echo $encodeid = $idstr->encodeId('12345678'); echo "<br/>"; echo $decodeid = $idstr->decodeId($encodeid); ?>
运行结果:
13309518
12345678
PS:关于加密解密感兴趣的朋友还可以参考本站在线工具:
文字在线加密解密工具(包含AES、DES、RC4等):
http://tools.haodaima.com/password/txt_encode
MD5在线加密工具:
http://tools.haodaima.com/password/CreateMD5Password
在线散列/哈希算法加密工具:
http://tools.haodaima.com/password/hash_encrypt
在线MD5/hash/SHA-1/SHA-2/SHA-256/SHA-512/SHA-3/RIPEMD-160加密工具:
http://tools.haodaima.com/password/hash_md5_sha
在线sha1/sha224/sha256/sha384/sha512加密工具:
http://tools.haodaima.com/password/sha_encode
希望本文所述对大家PHP程序设计有所帮助。
本文PHP实现的ID混淆算法类与用法示例到此结束。人生目标确定容易实现难,但是如果不行动,那连实现的可能也不会有。小编再次感谢大家对我们的支持!