PHP String
Sequence of characters is called string
Some PHP String Function
strlen() function is used to returns the length of a string.
Example
<?php
echo strlen(“PHP is a language”);
// outputs 17
?>
Sequence of characters is called string
Some PHP String Function
strlen() function is used to returns the length of a string.
Example
<?php
echo strlen(“PHP is a language”);
// outputs 17
?>