PHP strlen() Function Last Updated : 11 Jul, 2025 Comments Improve Suggest changes 2 Likes Like Report The strlen() is a built-in function in PHP which returns the length of a given string.It calculates the length of the string including all the whitespaces and special characters. Syntax:strlen($string);Parameters: This parameter represents the string whose length is needed to be returned. Return Value: The function returns the length of the $string including all the whitespaces and special characters. Example 1: The below example demonstrates the use of the strlen() function in PHP. PHP <?php // PHP program to find the // length of a given string $str = "GeeksforGeeks"; // prints the length of the string // including the space echo strlen($str); ?> Output:13Example 2: This example demonstrates the use of the strlen() function where the string has special characters and escape sequences. PHP <?php // PHP program to find the // length of a given string which has // special characters $str = "\n GeeksforGeeks Learning;"; // here '\n' has been counted as 1 echo strlen($str); ?> Output:25PHP is a server-side scripting language designed specifically for web development. You can learn PHP from the ground up by following this PHP Tutorial and PHP Examples. Create Quiz Comment C ChetnaAgarwal Follow 2 Improve C ChetnaAgarwal Follow 2 Improve Article Tags : Misc Web Technologies PHP PHP-string PHP-function +1 More Explore BasicsPHP Syntax4 min readPHP Variables5 min readPHP | Functions6 min readPHP Loops4 min readArrayPHP Arrays5 min readPHP Associative Arrays4 min readMultidimensional arrays in PHP5 min readSorting Arrays in PHP4 min readOOPs & InterfacesPHP Classes2 min readPHP | Constructors and Destructors5 min readPHP Access Modifiers4 min readMultiple Inheritance in PHP4 min readMySQL DatabasePHP | MySQL Database Introduction4 min readPHP Database connection2 min readPHP | MySQL ( Creating Database )3 min readPHP | MySQL ( Creating Table )3 min readPHP AdvancePHP Superglobals6 min readPHP | Regular Expressions12 min readPHP Form Handling4 min readPHP File Handling4 min readPHP | Uploading File3 min readPHP Cookies9 min readPHP | Sessions7 min read Like