把源串与密串进行异或,结果就是KEY。

来源:互联网 发布:java中set集合的用法 编辑:程序博客网 时间:2024/06/07 00:36
$string="mingrisoft";  $key="1234567890";  $result1=$string ^ $key;  $result2=$result1 ^ $key;  echo $result1 ^ $string;  //1234567890echo $result1;  //\[]SG_DW_Decho $result2;  //mingrisoft

0 0
原创粉丝点击