“php capitalise chaque mot” Réponses codées

php ucfirst tous les mots

$foo = 'hello world!';
$foo = ucwords($foo);             // Hello World!

$bar = 'HELLO WORLD!';
$bar = ucwords($bar);             // HELLO WORLD!
$bar = ucwords(strtolower($bar)); // Hello World!

//With custom delimiter
$foo = 'hello|world!';
$bar = ucwords($foo);             // Hello|world!

$baz = ucwords($foo, "|"); 
Matteoweb

ucwords en php

<?php
/* Convert the first character of each word to uppercase: */
echo ucwords("hello samy, how are you ?");

//output : Hello Samy, How Are You ?
?> 
Mr. Samy

php majuscule à chaque mot

$upperCaseSentance=ucwords("i do not feel good");//I Do Not Feel Good
Grepper

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

php capitalise chaque mot

ucwords(string);
Faithful Falcon

Réponses similaires à “php capitalise chaque mot”

Questions similaires à “php capitalise chaque mot”

Plus de réponses similaires à “php capitalise chaque mot” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code