Answers for "php communicate with upper text"

PHP
0

php string 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
?>
Posted by: Guest on July-03-2020

Browse Popular Code Answers by Language