Answers for "capitalize a word php"

PHP
2

php capital string

<?php
echo strtoupper("Hello WORLD!");
?>
Posted by: Guest on June-26-2020
0

php first letter capital each word

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

Browse Popular Code Answers by Language