PHP : Proper way to get UTF-8 character or string length
Problem :
Was trying to get a length of an unicode(UTF-8) character with PHP. Trouble is, PHP echoes back 3, which is technically correct, but not accurate.
For example :
<?php
echo strlen('黄');
?>
will return 3 instead of 1. How to get PHP to count the unicode character as 1?
Diagnostic :
UTF-8 character is multi-byte and need to tell PHP to use the proper encoding to measure the length.
Solution :
Use mb_strlen()
function with UTF-8
encoding to get the string length. For example :
<?php
echo mb_strlen('黄', 'UTF-8');
?>
Output :
1
which is accurate.
References :
See also : PHP : Extract part of a string starting from the middle
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+19.1k Golang : Delete item from slice based on index/key position
+11.6k Golang : Verify Linux user password again before executing a program example
+33.5k Golang : All update packages with go get command
+5.7k Golang : Error handling methods
+10.3k Golang : Meaning of omitempty in struct's field tag
+8.4k Golang : Add text to image and get OpenCV's X, Y co-ordinates example
+22.2k Golang : Read directory content with filepath.Walk()
+13.4k Golang : Get user input until a command or receive a word to stop
+13.3k Golang : Get constant name from value
+20k Golang : Convert seconds to human readable time format example
+8.9k Golang : Go as a script or running go with shebang/hashbang style
+21.5k SSL : How to check if current certificate is sha1 or sha2