.

Monday, October 17, 2011

Home » » PHP code - strtoupper

PHP code - strtoupper

strtoupper() function is to convert a string to uppercase



Syntax :
strtoupper(string)
Example:
<?php
$string="easy way to learning php";
$uppercase=strtoupper($string);

echo $uppercase;

?>

Output:
EASY WAY TO LEARNING PHP

0 komentar:

Post a Comment