Can PHP's MD5 result be converted to binary Base64 encoding to shorten the length?

Source: Internet
Author: User
The problem is roughly title, simple binary conversion seems to only get 0 and 1 of the string, not binary data, want to know how to write this code, can try to use PHP built-in functions to implement

The goal is to generate a shorter unique identity, before the use of MD5 again to determine whether to repeat, but the MD5 result is a 32-bit 16 binary string, or a bit long, so want to turn into a 64 binary string, do not know my thinking there is no error?

Reply content:

The problem is roughly title, simple binary conversion seems to only get 0 and 1 of the string, not binary data, want to know how to write this code, can try to use PHP built-in functions to implement

The goal is to generate a shorter unique identity, before the use of MD5 again to determine whether to repeat, but the MD5 result is a 32-bit 16 binary string, or a bit long, so want to turn into a 64 binary string, do not know my thinking there is no error?

Resolved by itself:

function base64md5 ($str) { return base64_encode(md5($str, 1));}

PS: Roughly as above, the phone writes the code, does not guarantee the correct ...

You can use the 16-bit MD5.

  • 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.