~~~ <?php function md5_5($data) { //得到数据的密文 $data = md5($data); //再把密文字符串的字符顺序调转 $data = strrev($data); //最后再进行一次MD5运算并返回 return md5($data); } ?> ~~~