หากเราอยากที่จะเปลี่ยนข้อความหรือคำที่มีอยู่ให้เป็นตัวใหญ่ ซึ่ง PHP มีให้ใช้ strtoupper สามารถเรียกใช้ได้เลยไม่ต้องทำอะไรเพิ่ม
วิธีใช้
string strtoupper ( string $string )Code :
$str = "Mary Had A Little Lamb and She LOVED It So";
$str = strtoupper($str);
echo $str;
Output :
MARY HAD A LITTLE LAMB AND SHE LOVED IT SO
No comments:
Post a Comment