strlen()
is one of the most common String functions in PHP. You pass it a string, or variable containing a string, and it returns the number of characters in that string. An example might be:
<?php
// get the length of a string and
// print it to the screen
$length = strlen("david");
print $length;
?>