Answers for "uppercase for all char php"

PHP
7

first character uppercase php

ucwords("hello world"); // Hello World
ucfirst("hello world"); // Hello world
Posted by: Guest on August-21-2020
2

php capital string

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

Browse Popular Code Answers by Language