Home

See the related posts

Mysql server version using php function – mysql_get_server_info()    Text file prompt download or force download using php    Number of lines in a file using php    Check Image exists or Not Using php and GD    PHP Warning: Call-time pass-by-reference has been deprecated   

Uppercase the first character of each word in a string

Uppercase the first character of each word in a string
Syntax : string ucwords ( string $str )
Returns a string with the first character of each word in str capitalized, if that character is alphabetic.
Parameters :
str : The input string.

Return Values :
Returns the modified string

Example :

<?php
		$titleString = "a title that could use some hELP";
		$ucTitleString = ucwords($titleString);
		echo "Old title - $titleString <br />";
		echo "New title - $ucTitleString";
?>

Display :
Old title – a title that could use some hELP
New title – A Title That Could Use Some HELP

Home

See the related posts

Mysql server version using php function – mysql_get_server_info()    Text file prompt download or force download using php    Number of lines in a file using php    Check Image exists or Not Using php and GD    PHP Warning: Call-time pass-by-reference has been deprecated   

No Comments »

No comments yet.

RSS feed for comments on this post. TrackBack URI

Leave a comment