PHP

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
?>

Leave a Reply

Your email address will not be published. Required fields are marked *