du8864 2016-10-11 15:10
浏览 233
已采纳

从sql保存并获取哈希值

first I create a hash code and save it in my database:

$key = md5(uniqid(rand(), true));
$update = mysqli_query($conn, "UPDATE my_table SET md5key = MD5('$key') WHERE id = 1");

But the $key does not match the code in the database?

$key = e114e5bd4c8551d4e46a636d0c087b0e database = c00855d30f0c2c2f527b95f8be86a8b3

My field in the database has the following option:

md5key varchar(255) utf8_general_ci

Whats wrong here?

</div>
  • 写回答

1条回答 默认 最新

  • duan97689 2016-10-11 15:16
    关注

    I think that's because your $key variable has an MD5 hash already, but when you make the update query, you use a MD5 function again, so the value inserted in the database will be different.

    Just do this:

    $key = md5(uniqid(rand(), true));
    $update = mysqli_query($conn, "UPDATE my_table SET md5key = '$key' WHERE id = 1");
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部