Home  >  Article  >  Backend Development  >  How to use php to determine that the input does not exceed the length range of the varchar field of mysql

How to use php to determine that the input does not exceed the length range of the varchar field of mysql

不言
不言Original
2018-06-19 15:51:471395browse

This article mainly introduces how to use PHP to determine the length range of the varchar field that the input does not exceed mysql. It has a certain reference value. Now I share it with you. Friends in need can refer to it

varchar Type field, if you set the length to 10, then 10 can be stored regardless of Chinese characters or English.

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, which just exceeds the length of varchar, but in fact it 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?

The above is the entire content of this article. I hope it will be helpful to everyone's study. For more related content, please pay attention to the PHP Chinese website!

Related recommendations:

How to solve the problem of garbled characters in thinkphp3 query mssql database

About PHP generating ICO based on the yii framework Icon code analysis

The above is the detailed content of How to use php to determine that the input does not exceed the length range of the varchar field of mysql. For more information, please follow other related articles on the PHP Chinese website!

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