“PHP en majuscules du premier caractère” Réponses codées

String première lettre en majuscule PHP


<?php
$foo = 'hello world!';
$foo = ucfirst($foo);             // Hello world!

$bar = 'HELLO WORLD!';
$bar = ucfirst($bar);             // HELLO WORLD!
$bar = ucfirst(strtolower($bar)); // Hello world!
?>

Testy Teira

ucFirst () php


<?php
$foo = 'hello world!';
$foo = ucfirst($foo);             // Hello world!

$bar = 'HELLO WORLD!';
$bar = ucfirst($bar);             // HELLO WORLD!
$bar = ucfirst(strtolower($bar)); // Hello world!
?>
// string manipulation function 
Ramsey1120

PHP en majuscules du premier caractère

ucwords("hello world"); // Hello World
ucfirst("hello world"); // Hello world
Zany Zebra

Première lettre capitale de chaque mot de PHP

$clientname = "ankur prajapati";
ucwords($clientname);//Ankur Prajapati
ucfirst($clientname);//Ankur Prajapati

$clientname = "ANKUR PRAJAPATI";
ucfirst(strtolower($clientname));//Ankur Prajapati
Ankur

Réponses similaires à “PHP en majuscules du premier caractère”

Questions similaires à “PHP en majuscules du premier caractère”

Plus de réponses similaires à “PHP en majuscules du premier caractère” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code