Answers for "php which will put all the first letters of each word in lowercase."

PHP
4

first letter capital of every word in php

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

$clientname = "ANKUR PRAJAPATI";
ucfirst(strtolower($clientname));//Ankur Prajapati
Posted by: Guest on December-02-2020

Code answers related to "php which will put all the first letters of each word in lowercase."

Browse Popular Code Answers by Language