“STRING Huruf Pertama Huruf PHP” Kode Jawaban

STRING Huruf Pertama Huruf 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

Karakter Pertama Huruf Besar PHP

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

Jawaban yang mirip dengan “STRING Huruf Pertama Huruf PHP”

Pertanyaan yang mirip dengan “STRING Huruf Pertama Huruf PHP”

Lebih banyak jawaban terkait untuk “STRING Huruf Pertama Huruf PHP” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya