Developers needed a way to check the length of a string, so the strlen function was introduced to handle this task in PHP.
Table of Content
Understand the strlen() Function in PHP
The strlen() function in PHP tells you how many characters a string has. It counts each byte, not each letter.
Here is the syntax:
strlen( $string )You pass one string and it gives you a number back. It gives you an integer. That number shows how many bytes the string holds.
PHP counts every byte in the string. It starts from the first character. It stops when it reaches the end.
Here is an example:
echo strlen("Flatcoding");This prints 5. That string has five letters, and each letter uses one byte.
echo strlen("");This gives 0. The string has no content, so the count is zero.
Here are the use cases:
- You check if a field is empty and check if it is too short.
- It stops weak passwords and makes sure they are not shorter than a safe length.
- You can cut long strings and check their length first with
strlen().
Handle Multibyte Strings (Important Warning)
strlen() does not count letters in multibyte strings. It counts bytes. If a letter uses more than one byte, strlen() gives the wrong length.
To handle this, use mb_strlen().
echo strlen("你好");
echo mb_strlen("你好");The output:
6
2
Unicode has characters that use two or more bytes. strlen() does not treat them as one unit. That causes problems with length checks or output limits.
The Difference Between strlen() an mb_strlen()
The strlen() counts the number of bytes in a string.
It works well for ASCII strings. Each character takes one byte. But for multibyte characters, like those in UTF-8 (e.g. Arabic, Chinese, or emoji), strlen() counts each byte, not each character.
For example:
$str = "こんにちは";
echo strlen($str); Output:
Hello
15
This string has 5 characters, but strlen() returns 15 because each character uses 3 bytes in UTF-8.
While the mb_strlen() counts the number of characters, not bytes.
It works correctly for multibyte strings. You must set the correct encoding. Most of the time, that is UTF-8.
$str = "こんにちは";
echo mb_strlen($str, "UTF-8"); // Output: 5Now the function shows the correct count: 5 characters.
Examples
Simple check:
$username = "admin";
if (strlen($username) < 4) {
echo "Username too short";
}This checks if the username has fewer than four characters. It runs fast and works for basic cases.
Multibyte problem:
$name = "José";
echo strlen($name);
echo mb_strlen($name); strlen($name) returns 5 because strlen counts bytes, and the character é (accented e) is a 2-byte character in UTF-8. So "José" consists of:
- J → 1 byte
- o → 1 byte
- s → 1 byte
- é → 2 bytes
mb_strlen($name) returns 4 because mb_strlen counts characters, not bytes. It correctly handles multibyte characters like é.
Wrapping Up
In this article, you learned how strlen() counts the bytes in a string. You also saw why it fails with multibyte characters.
Here is a quick recap:
- Use
strlen()for basic strings - Use
mb_strlen()for multibyte or Unicode strings strlen()counts bytes, not real characters- It helps with form checks and limits with trims
Thank you for reading. Click here to see more PHP tutorials.
FAQs
What does strlen() return in PHP?
Does strlen() work with multibyte strings?
What is the difference between strlen() and mb_strlen()?
Is strlen() in all PHP versions?
Why is strlen() not accurate for Unicode?
Similar Reads
PHP added the array_map() function to help you apply one function to each item in an array. Understand the array_map…
The array_rand() is a helper function in PHP that makes it easier when dealing with arrays; you can just pull…
The PHP associative array is a structured collection wherein data elements are organized into lists or groups. Each element is…
Before PHP 5.2, there was no built-in filter extension in PHP. You had to manually handle and sanitize input. PHP…
In this tutorials, we are going to explain the PHP MySQL Delete Data process with a simple, unique guide. By…
PHP array_find was released in PHP 8.4 to locate a value inside an array and returns the first match. Understand…
PHP arrays serve as powerful tools for storing multiple values in a single variable. To manipulate arrays efficiently, PHP provides…
User input does not always come through as expected. Sometimes values are missing or not set at all. This can…
The PHP operator precedence refers to when doing a calculation for three or more numbers, they are calculating its values…
File Handling in PHP is an important tool especially when you need to manage files such as reading, writing, or…