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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
PHP Script
|
2003-11-08
|
112 b
|
7 lines
<?php
$str = 'abcdef';
echo strlen($str); //return 6
$str = ' ab cd ';
echo strlen($str); //return 7
?>