Discussion board
Where use the strlen() function ?
By prabeen patra
strlen() function......
Reply
Post   Reset
Teacher SiliconIndia replied to prabeen patra Wednesday, March 17, 2010
Hi Prabeen,
The strlen() function is used to return the length of a string.
<?php
echo strlen("Hello world!");
?>
OUT PUT: 12