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;
?>
$string="easy way to learning php";
$uppercase=strtoupper($string);
echo $uppercase;
?>
Output:
EASY WAY TO LEARNING PHP


0 komentar:
Post a Comment