“strtupper” Kode Jawaban

strtupper dalam php

<?php
/* There is a function in php wich convert all string to uppercase */

  echo strtoupper("Hello samy! how are u ?"); 

// output :   HELLO SAMY! HOW ARE U ?
?>
Mr. Samy

string php mayusculas


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

Testy Teira

strtupper php

string strtoupper ( $string )
Codeblock

strtupper

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

Jawaban yang mirip dengan “strtupper”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya