varchar php determines that the input does not exceed the length range of the varchar field of mysql

WBOY
Release: 2016-07-29 08:45:43
Original
1149 people have browsed it

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 is just longer than varchar length, 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?

The above introduces how varchar PHP determines that the input does not exceed the length range of the varchar field of mysql, including the content of varchar. I hope it will be helpful to friends who are interested in PHP tutorials.

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!