Hello guys I have a word default and I want a php function to make only first letter capital. Can we do that. Please help me out as I am very new to php coding.

Thanks in advance!

link|improve this question
3  
php.net/… – deceze Apr 4 '11 at 8:57
First search result on Google: encrypted.google.com/… – Gordon Apr 4 '11 at 9:05
1  
Thanks I will keep the track of this site! – Geeta Apr 4 '11 at 9:05
You should try some searching on the web, because if you would searched for it on the Google you would have been got a correct answer in first place. Just keep this in mind first search and if not get the correct answer then ask. – Jack Billy Apr 4 '11 at 9:06
1  
Thanks Jack Billy, I think from next time I will do that. – Geeta Apr 4 '11 at 9:07
feedback

6 Answers

up vote 6 down vote accepted

You may want to use ucfirst().

Note: you may get wrong results with accented characters when you use this function.

link|improve this answer
1  
Thanks fabrik! This worked in first place and I think I will not be a beginner for any longer! Thanks again! – Geeta Apr 4 '11 at 9:00
1  
Thanks for that notification I will keep that in my mind! – Geeta Apr 4 '11 at 9:01
I'm glad to help you. – fabrik Apr 4 '11 at 9:02
feedback

Hello Geeta you can simply use ucwords() php function to make every first letter of your word Upper Cased!

Hope this would help!

link|improve this answer
1  
Thanks Jack Billy, this worked just as I thought! Thanks! – Geeta Apr 4 '11 at 9:00
Well, actually this answer it's not so good. Why use ucwords() when you only need ucfirst(). Fabrik's answer is right on. – Bogdan Constantinescu Apr 5 '11 at 6:14
Ok. As you say Bogdan Constantinescu. – Geeta Apr 5 '11 at 10:34
feedback

ucfirst capitalizes the first letter in a string.

ucwords capitalizes every word in a string.

link|improve this answer
1  
THanks Philip, this helped me a lot! – Geeta Apr 4 '11 at 9:00
feedback

I think that http://se2.php.net/manual/en/function.ucwords.php is the best function here :)

link|improve this answer
feedback

ucfirst will work only on 1 word, and ucwords(strtolower($k)) will capitalize all first letters in a phrase enter link description here

link|improve this answer
feedback

This is php code,help you

<?php

$string = 'stackoverflow';
$string = ucfirst($string);
echo $string;//Stackoverflow

?>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.