How to deal with Mcrypt_encrypt () encryption in Chinese, it is displayed as garbled, and after the restoration is

Source: Internet
Author: User
How to do Mcrypt_encrypt () after the encryption of Chinese, it is displayed as garbled, and after the restoration is
page can display Chinese is not a coding problem
Why is it garbled after encryption? What to do with
it



Header ("content-type:text/html; Charset=utf-8 ");

$str = "Before the bed bright moonlight, suspicion is ground frost"; Content that is encrypted
$key = "key:111"; Secret key
$cipher =mcrypt_des; Encryption algorithm Type
$mode =MCRYPT_MODE_ECB; Cryptographic algorithm Mode
$iv =mcrypt_create_iv (Mcrypt_get_iv_size ($cipher, $mode), Mcrypt_rand); Initialization vector
echo "before encryption". $str. "
";
Encryption
$str _encrypt=mcrypt_encrypt ($cipher, $key, $str, $mode, $IV);
echo "after Encryption". $str _encrypt. "
";
Restores
$str _decrypt=mcrypt_encrypt ($cipher, $key, $str _encrypt, $mode, $IV);
echo "Restore". $str _decrypt. "
";

?>


------Solution--------------------
Restores
$str _decrypt=mcrypt_ Decrypt($cipher, $key, $str _encrypt, $mode, $IV);
echo "Restore". $str _decrypt. "
";
  • 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.