Here is a summary of several character functions in PHP: 1) ucfirst Change the first letter to uppercase, for example $string = "this is my web development blog"; echo ucfirst($string); // Output: This is my web development blog 2) lcfirst, change the first letter to lowercase $string = "This is my Web Development Blog"; echo lcfirst($string); // Output: this is my Web Development Blog 3) strt
1. Summary of several character functions in php
##Introduction: Below Summarize several character functions in PHP: 1) ucfirst changes the first letter to uppercase, for example $string = "this is my web development blog"; echo ucfirst($string); // Output: This is my web development blog 2) lcfirst, change the first letter to lowercase $string ...
2. PHP case conversion function lcfirst ucfirst ucwords strtolower strtoupper
Introduction:: This article mainly introduces the PHP case conversion function lcfirst ucfirst ucwords strtolower strtoupper. Students who are interested in PHP tutorials can refer to it.
3. php ucwords function converts the first character of each word in the string to uppercase words download word download sight words
Introduction: words:php ucwords function converts the first character of each word in the string to uppercase: php ucwords() function converts the first character of each word in the string to uppercase, this article introduces it to coders Interested programmers can refer to the basic usage methods and examples of the php ucwords() function. Definition and Usage The ucwords() function converts the first character of each word in a string to uppercase. Note: This function is binary safe. Related functions: lcfirst() - Convert the first character in the string to lowercase strtolower() - Convert the string to lowercase strtoupper(
4. php ucwords function will The first character of each word in the string is converted to uppercase implementation code words download word download sight words
Introduction: words:php ucwords function converts the first character of each word in the string to uppercase Implementation code for converting the first character to uppercase: The php ucwords() function converts the first character of each word in the string to uppercase. This article introduces the basic usage and examples of the php ucwords() function to coders. Interested coders You can refer to it. Definition and usage The ucwords() function converts the first character of each word in the string to uppercase. Note: This function is binary safe. Related functions: lcfirst() - Converts the first character of the string to uppercase. lowercase strtolower() - Converts a string to lowercase strtoupper
The above is the detailed content of Recommended articles about the string function lcfirst. For more information, please follow other related articles on the PHP Chinese website!