Home > Article > Backend Development > PHP English letter case conversion function
This article mainly introduces several PHP English letter case conversion functions. Now I share them with you. Friends in need can refer to it
Convert the first letter of each word to uppercase: ucwords()
Copy code The code is as follows:
<?php $foo = 'hello world!'; $foo = ucwords($foo); // Hello World! $bar = 'HELLO WORLD!'; $bar = ucwords($bar); // HELLO WORLD! $bar = ucwords(strtolower($bar)); // Hello World! ?>
The first letter of the first word is capitalized: ucfirst()
Copy code The code is as follows:
<?php $foo = 'hello world!'; $foo = ucfirst($foo); // Hello world! $bar = 'HELLO WORLD!'; $bar = ucfirst($bar); // HELLO WORLD! $bar = ucfirst(strtolower($bar)); // Hello world! ?>
The first letter of the first word is lowercase: lcfirst()
Copy code The code is as follows:
<?php $foo = 'HelloWorld'; $foo = lcfirst($foo); // helloWorld $bar = 'HELLO WORLD!'; $bar = lcfirst($bar); // hELLO WORLD! $bar = lcfirst(strtoupper($bar)); // hELLO WORLD! ?>
Change all letters to uppercase: strtoupper()
Change all letters to lowercase: strtolower()
##
The above is the detailed content of PHP English letter case conversion function. For more information, please follow other related articles on the PHP Chinese website!