Followings are useful string functions: 1. Strlen PHP has a predefined function to get the length of a string. Strlen() displays the length of any string. It is more commonly used in validating input fields where the user is limited to enter a fixed length of characters. Syntax: Strlen(string); Example: <?php echo strlen(“Welcome to PHP”);//will … Continue reading PHP String Functions