strtoupper PHP คือ คำสั่งสำหรับเปลี่ยนตัวพิมพ์เล็กให้เป็นตัวพิมพ์ใหญ่ ของภาษา PHP สามารถเขียนโปรแกรมได้ดังนี้
ตัวอย่าง strtoupper PHP คือ
<?php
$text = "devdit";
echo "ก่อนใช้ strtoupper = ".$text;
echo "<br/>";
echo "หลังใช้ strtoupper = ".strtoupper( $text );
?>
ผลลัพธ์
ก่อนใช้ strtoupper = devdit
หลังใช้ strtoupper = DEVDIT