Home Apache PHP Ubuntu MySQL Linux HTML Win CSS Perl Javascript Rants Retro
 
Print This Page
Date Posted: Tuesday 02nd of February 2010 | Category: PHP
Count the length of a string in php
To count the length of a string in php copy and paste the following code.

<?php
$str = 'abcdef';
echo strlen($str); // 6

<?php
$str = ' ab cd ';
echo strlen($str); // 7
?>