Returns the length of the specified string.
"string" - the string to obtain the length of.
A scalar integer
$string = "this is some text"; $length = strlen($string); println($length);
17