convert uppercase in php

PHP
$lowercase = "this is lower case";
$uppercase = strtoupper($lowercase);

echo $uppercase;
// THIS IS LOWER CASE<?php
echo strtoupper("Hello WORLD!");
?>
Source

Also in PHP: