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
+16.5k Golang : Loop each day of the current month example
+5.9k Golang : Markov chains to predict probability of next state example
+30k Golang : Record voice(audio) from microphone to .WAV file
+7k Golang : Decode XML data from RSS feed
+14.7k Golang : How to get URL port?
+11.9k How to tell if a binary(executable) file or web application is built with Golang?
+26.6k Golang : Get executable name behind process ID example
+16.7k Golang : Merge video(OpenCV) and audio(PortAudio) into a mp4 file
+8.2k Golang : Variadic function arguments sanity check example
+6.4k Golang : Extract sub-strings
+6.8k Golang : When to use make or new?