strlen() function

by | |
The strlen() function is used to return the length of a string.
Let's find the length of a string:
<?php
echo strlen("Hello world!");
?>

The output of the code above will be:
12

0 comments:

Post a Comment