Source Code:
(back to article)
<?php $string = "The quick brown fox jumps over the lazy dog."; $length = strlen($string); echo "The length of the string '$string' is $length";
Result:
Report an issue