Home  >  Article  >  Backend Development  >  PHP determines that the input does not exceed the length range of mysql's varchar field

PHP determines that the input does not exceed the length range of mysql's varchar field

高洛峰
高洛峰Original
2016-11-30 09:44:201187browse

But if under UTF-8 encoding, a Chinese character occupies 3 characters in length, such as the string $str=”Hello!!”;

If you use the strlen function to judge, the length is 11, just over The length of varchar is reduced, but in fact this is not the case. If you directly execute the insert statement in phpmyadmin, this string can be inserted!

For the database, its length is 5, so how do we use PHP to get this length? Use the iconv_strlen() function!

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

Note that the second parameter is the current character set, so the results you get according to different character sets are calculated based on the length of one character!

The above statement will output 5. How about it? Can you judge it? Please indicate the source for reprinting: php determines that the input does not exceed the length range of the varchar field of mysql

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn