PHP Program to convert string into uppercase

bookmark

<?php
    $str = 'hello friends';
    echo strtoupper($str) 
?>

 

Output
HELLO FRIENDS