“Erster Charakter Großbuchstaben PHP” Code-Antworten

String Erster Buchstabe Großbuchstaben 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

Erster Charakter Großbuchstaben PHP

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

Erster Buchstabe Kapital jedes Wortes in PHP

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

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

Ähnliche Antworten wie “Erster Charakter Großbuchstaben PHP”

Fragen ähnlich wie “Erster Charakter Großbuchstaben PHP”

Weitere verwandte Antworten zu “Erster Charakter Großbuchstaben PHP” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen