“string modal php” Kode Jawaban

PHP huruf besar

//string to all uppercase
$string = "String with Mixed use of Uppercase and Lowercase";
//php string to uppercase
$string = strtoupper($string);
// = "STRING WITH MIXED USE OF UPPERCASE AND LOWERCASE"
Vic20

string modal php

<?php
echo strtoupper("Hello WORLD!");
?>
Frail Flamingo

string php ke huruf besar

<?php
$str = "Mary Had A Little Lamb and She LOVED It So";
$str = strtoupper($str);
echo $str; // show: MARY HAD A LITTLE LAMB AND SHE LOVED IT SO
Ivan The Terrible

Jawaban yang mirip dengan “string modal php”

Pertanyaan yang mirip dengan “string modal php”

Lebih banyak jawaban terkait untuk “string modal php” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya