Maison > Article > développement back-end > Quelles sont les méthodes pour forcer la conversion des lettres en majuscules et minuscules en PHP ?
La fonction
strtoupper()
convertit une chaîne en majuscule. La fonction
strtolower()
convertit une chaîne en minuscules.
Convertir la première lettre de chaque mot en majuscule : ucwords()
<?php $foo = 'hello world!'; $foo = ucwords($foo); // Hello World! $bar = 'HELLO WORLD!'; $bar = ucwords($bar); // HELLO WORLD! $bar = ucwords(strtolower($bar)); // Hello World! ?>
Recommandation vidéo d'apprentissage en ligne : Tutoriel vidéo php
Le premier mot Changer la première lettre en majuscule : ucfirst()
<?php $foo = 'hello world!'; $foo = ucfirst($foo); // Hello world! $bar = 'HELLO WORLD!'; $bar = ucfirst($bar); // HELLO WORLD! $bar = ucfirst(strtolower($bar)); // Hello world! ?>
Changer la première lettre du premier mot en minuscule : lcfirst()
<?php $foo = 'HelloWorld'; $foo = lcfirst($foo); // helloWorld $bar = 'HELLO WORLD!'; $bar = lcfirst($bar); // hELLO WORLD! $bar = lcfirst(strtoupper($bar)); // hELLO WORLD! ?>
Tutoriels d'articles connexes recommandés : tutoriel php
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!