Font-size: A A A
Returns the length of a string.
The strlen() function returns the length of a string.
<?php print strlen("Hello there") . "<br>"; print strlen("a b c"); ?>
11 5
strlen() is used to find the lengths of two strings.