“Przypadek tytułowy PHP” Kod odpowiedzi

php ucfirst wszystkie słowa

$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

Przypadek tytułowy PHP


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

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

D3signa

SWORMY w 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 Ofperase każde słowo

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

Odpowiedzi podobne do “Przypadek tytułowy PHP”

Pytania podobne do “Przypadek tytułowy PHP”

Więcej pokrewnych odpowiedzi na “Przypadek tytułowy PHP” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu