Answers for "fonction native php first letter uppercase"

PHP
14

string first letter uppercase php

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

$bar = 'HELLO WORLD!';
$bar = ucfirst($bar);             // HELLO WORLD!
$bar = ucfirst(strtolower($bar)); // Hello world!
?>
Posted by: Guest on July-03-2020
0

php first letter capital each word

echo ucwords("hello world");
Posted by: Guest on September-24-2021

Code answers related to "fonction native php first letter uppercase"

Browse Popular Code Answers by Language