![]() |
| Home | Apache | PHP | Ubuntu | MySQL | Linux | HTML | Win | CSS | Perl | Javascript | Rants | Retro |
|
||
| 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 ?> |