Open In App

How to get String Length in PHP ?

Last Updated : 20 May, 2021
Comments
Improve
Suggest changes
Like Article
Like
Report

In this article, we learn how to find the length of the string in PHP. 

Approach: This task can be done by using the built-in function strlen() in PHP. This method is used to return the length of the string. It returns a numeric value that represents the length of the given string. 

Syntax:

strlen($string)

Example 1: 

Output:

18

Example 2: Below code demonstrates the use of strlen() function in PHP where the string has special characters and escape sequences.

Output:

14

Next Article

Similar Reads