<?php echo strlen("Hello world!"); // will output 12 ?>
<?php $str = 'abcde'; echo strlen($str); // 6 $str = ' ab cd '; echo strlen($str); // 7 ?>
<?php $len = strlen("text goes here...") ?>