Home > Article > Backend Development > How to convert lowercase letters to uppercase in php
php method to convert lowercase letters to uppercase: You can use the strtoupper() function to achieve this. The strtoupper() function can convert a string to uppercase and return the converted string, such as: [strtoupper("Hello WORLD!")].
strtoupper() function converts a string to uppercase and returns the string converted to uppercase.
(Recommended tutorial: php graphic tutorial)
Grammar:
strtoupper(string)
(Recommended learning video: php video tutorial )
Example:
<?php echo strtoupper("Hello WORLD!"); ?>
Output result:
HELLO WORLD!
The above is the detailed content of How to convert lowercase letters to uppercase in php. For more information, please follow other related articles on the PHP Chinese website!