The strlen() function is used to returns the given string of a length.
strlen()
strlen(string)
<?php echo strlen("Good Morning"); ?>
Output
12
Prev Next