Open In App

PHP mb_strlen() Function

The mb_strlen() is an inbuilt PHP function that returns the string length in an integer.

Syntax:



mb_strlen($string, $encoding ): int

Parameters: This function accepts 2 parameters that are described below:

Return Values: The number of characters in the string that have the character encoding, will be returned by this function. It will count as 1 for the multi-byte character.



Example 1: The following program demonstrates the mb_strlen() function.




<?php
$str = "안녕하세요";
$length = mb_strlen($str, 'UTF-8');
echo "The length of the string is $length";   
?>

Output:

The length of the string is 5  

Example 2: The following program demonstrates the mb_strlen() function.




<?php
$str = "GeeksforGeeks";
$length = mb_strlen($str);
echo "The length of the string is $length";
?>

Output:

The length of the string is 13

Reference: https://www.php.net/manual/en/function.mb-strlen.php

Article Tags :