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 ? 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 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); ?> 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 ! Link to comment https://forums.phpfreaks.com/topic/87632-solved-uppercase-first-letter/#findComment-448335 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.