home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2008 February / PCWFEB08.iso / Software / Resources / Developers / Alleycode HTML Editor 2.2 / alleycodesetup.exe / {app} / PHP / length.php < prev    next >
Encoding:
PHP Script  |  2003-11-08  |  112 b   |  7 lines

  1. <?php
  2. $str = 'abcdef';
  3. echo strlen($str); //return  6
  4.  
  5. $str = ' ab cd ';
  6. echo strlen($str); //return  7
  7. ?>