Categories: PHP

strlen – PHP String Functions

Syntax :

int strlen ( string );

Description :

It’s an inbuilt function of PHP. The strlen() function returns the length of a string.


Parameter :

[table caption=”” width=”100%” colwidth=”15%|15%|15%|55%” colalign=”left|left|left|left”]
Name, Required /Optional, Value Type, Description

string, Required, String, String to check the length.

[/table]


Output :

Returns the length of a string on success, and 0 if the string is empty.


ChangeLog :

[table caption=”” width=”100%” colwidth=”25%|75%” colalign=”left|left”]
PHP Version, Description
5.3.0, Prior versions treated arrays as the string Array thus returning a string length of 5 and emitting an E_NOTICE level error.

[/table]


Related articles : substr_count(), str_word_count().


strlen() – PHP Functions Example 1 : Return the length of the string
<?php
echo strlen("Hi from tutorialmines.");
?>

Output of above code in the browser is as below:

22

strlen() – PHP Functions Example 2 : Returns 0 if the string is empty.
<?php
echo strlen("");
?>

Output of above code in the browser is as below:

0
jyoti rani

Recent Posts

From Tears to Toys: Exploring Modern Childhood through Delhi’s Favorite Toy Shop

In the digital age, the way we experience childhood has changed, but the essence remains the same—imagination, exploration, and joy.…

2 days ago

Confused About Where to Buy Toys in India for your little one? We’ve Got You Covered

Looking for the perfect toy for your child can feel overwhelming with so many choices in today’s market. Whether you're…

3 days ago

A New Age of Play: Exploring the Magic of a Toy Shop in Delhi

In the heart of every child lies a world bursting with imagination — and the key to unlocking that world…

4 days ago

Creating Smiles with Play: The Magic of a Toy Store in Noida

In the fast-paced world of growing cities and digital lifestyles, children need spaces where their imagination is free to roam.…

5 days ago

A World of Wonder: Inside the Most Delightful Toy Store in Delhi

In a city as vibrant and diverse as Delhi, there’s a magic that lives beyond the monuments, food stalls, and…

6 days ago

The Magic of Play: Exploring the Best Toy Shop in Noida and Beyond

In the vibrant and rapidly developing city of Noida, playtime is getting smarter, more imaginative, and more inclusive than ever…

1 week ago