Home >Backend Development >PHP Problem >What are the methods to convert the first letter of a string to uppercase or lowercase in PHP?

What are the methods to convert the first letter of a string to uppercase or lowercase in PHP?

王林
王林Original
2019-12-05 10:38:092933browse

What are the methods to convert the first letter of a string to uppercase or lowercase in PHP?

Convert the first letter of each word to uppercase: ucwords()

<?php
$foo = &#39;hello world!&#39;;
$foo = ucwords($foo);             // Hello World!
 
$bar = &#39;HELLO WORLD!&#39;;
$bar = ucwords($bar);             // HELLO WORLD!
$bar = ucwords(strtolower($bar)); // Hello World!
?>

Recommended related video tutorials: php video tutorial

The first letter of the first word becomes uppercase: ucfirst()

<?php
$foo = &#39;hello world!&#39;;
$foo = ucfirst($foo);             // Hello world!
 
$bar = &#39;HELLO WORLD!&#39;;
$bar = ucfirst($bar);             // HELLO WORLD!
$bar = ucfirst(strtolower($bar)); // Hello world!
?>

The first letter of the first word becomes lowercase: lcfirst()

<?php
$foo = &#39;HelloWorld&#39;;
$foo = lcfirst($foo);             // helloWorld
 
$bar = &#39;HELLO WORLD!&#39;;
$bar = lcfirst($bar);             // hELLO WORLD!
$bar = lcfirst(strtoupper($bar)); // hELLO WORLD!
?>

Additional knowledge points:

Change all letters to uppercase: strtoupper()

Change all letters to lowercase: strtolower()

Recommended related articles and tutorials: php tutorial

The above is the detailed content of What are the methods to convert the first letter of a string to uppercase or lowercase in PHP?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn