1
2<?php
3$foo = 'hello world!';
4$foo = ucfirst($foo); // Hello world!
5
6$bar = 'HELLO WORLD!';
7$bar = ucfirst($bar); // HELLO WORLD!
8$bar = ucfirst(strtolower($bar)); // Hello world!
9?>
10
11
1
2<?php
3$foo = 'hello world!';
4$foo = ucfirst($foo); // Hello world!
5
6$bar = 'HELLO WORLD!';
7$bar = ucfirst($bar); // HELLO WORLD!
8$bar = ucfirst(strtolower($bar)); // Hello world!
9?>
10// string manipulation function
11
1ucwords("hello world"); // Hello World
2ucfirst("hello world"); // Hello world
1
2<?php
3$foo = 'bonjour tout le monde!';
4$foo = ucfirst($foo); // Bonjour tout le monde!
5
6$bar = 'BONJOUR TOUT LE MONDE!';
7$bar = ucfirst($bar); // BONJOUR TOUT LE MONDE!
8$bar = ucfirst(strtolower($bar)); // Bonjour tout le monde!
9?>
10
11
1$clientname = "ankur prajapati";
2ucwords($clientname);//Ankur Prajapati
3ucfirst($clientname);//Ankur Prajapati
4
5$clientname = "ANKUR PRAJAPATI";
6ucfirst(strtolower($clientname));//Ankur Prajapati