Maison > Article > développement back-end > Comment convertir une chaîne en majuscule en php
Comment convertir une chaîne en majuscules en PHP : Vous pouvez utiliser la fonction intégrée strtoupper() pour convertir. La fonction strtoupper() convertit la chaîne spécifiée en majuscule et renvoie la chaîne convertie en majuscule.
Utiliser la fonction :
(Recommandation vidéo d'apprentissage : Tutoriel vidéo php)
strtoupper( ) convertit une chaîne en majuscule et renvoie la chaîne convertie en majuscule.
Syntaxe :
strtoupper(string)
(Recommandations associées : formation php)
Implémentation du code :
<?php $string = "Learn PHP string functions at phpcn"; $lower = strtolower($string); $upper = strtoupper($string); print("$lower\n"); print("$upper\n"); print("\n"); ?>
Résultat de sortie :
learn php string functions at phpcn LEARN PHP STRING FUNCTIONS AT PHPCN
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!