EchoFool Posted January 24, 2008 Share Posted January 24, 2008 I been searching for this function on php's site but all i keep finding is how to upper case a whole sentence... all i want to do is uppercase the very first letter of the string and the rest remain as they are. Does any one know the link to the page of this function ? Quote Link to comment https://forums.phpfreaks.com/topic/87632-solved-uppercase-first-letter/ Share on other sites More sharing options...
revraz Posted January 24, 2008 Share Posted January 24, 2008 ucwords http://us2.php.net/manual/en/function.ucwords.php Quote Link to comment https://forums.phpfreaks.com/topic/87632-solved-uppercase-first-letter/#findComment-448239 Share on other sites More sharing options...
sasa Posted January 24, 2008 Share Posted January 24, 2008 try <?php $a = 'sasa vitner'; echo ucfirst($a),"\n"; echo ucwords($a); ?> Quote Link to comment https://forums.phpfreaks.com/topic/87632-solved-uppercase-first-letter/#findComment-448243 Share on other sites More sharing options...
EchoFool Posted January 24, 2008 Author Share Posted January 24, 2008 Thankyou! Working now ! Quote Link to comment https://forums.phpfreaks.com/topic/87632-solved-uppercase-first-letter/#findComment-448335 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.