Javascript debugger Website design ↑
Returns the length of the given string.
The string being measured for length.
The length of the string on success, and 0 if the string is empty.
0
<?php $str = 'abcdef'; echo strlen($str); // 6 $str = ' ab cd '; echo strlen($str); // 7 ?>
Javascript debugger Website design