Another week, another fresh post over here. I will write shortly about two ways on how to make characters/letters upper case (capitalize). One way its strtoupper (string to upper) which converts all string, and the second its for first character only function ucfirst(). Here comes the example:
<?php $capitalizeString = strtoupper("my string"); //will return MY STRING $capitalizeFirst = ucfirst("my"); //returns My ?>
The style of writing is very familiar . Did you write guest posts for other bloggers?
No, I published an article of mine called “PHP Tutorial” to a few thousands of blogs and article sites