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   

Capitalization in PHP

strtoupper ()
Make a string uppercase

Syntax : string strtoupper ( string $string )

Returns string with all alphabetic characters converted to uppercase

Parameters :
string : The input string
Return Values :
Returns the uppercased string.

Examples :

<?php
		$originalString = "String Capitalization 1234";
		$upperCase = strtoupper($originalString);

		echo "Old string - $originalString <br />";
		echo "New String - $upperCase";
?>

Display:
Old string – String Capitalization 1234
New String – STRING CAPITALIZATION 1234

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