Php judges that the input does not exceed the length range of the mysql varchar field

Source: Internet
Author: User
Php judges that the input does not exceed the length range of the mysql varchar field. However, if the input is UTF-8 encoded, a Chinese character occupies three characters, for example, string $ str = "Hello !! ";

If you use the strlen function to judge that the length is 11, which is more than the length of varchar, but it is actually not like this. if you directly execute the insert statement in phpmyadmin, this string can be inserted!

For a database, the length is 5. how can we use PHP to get the length? Use the iconv_strlen () function!

Echo iconv_strlen ($ str, 'utf-8 ′);

Note that the second parameter is the current character set. Therefore, based on different character sets, the result is calculated based on the length of one character!

The above statement will output 5. how do you know? Reprinted, please specify the source: php determines that the input does not exceed the length range of the mysql varchar field

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.