php string mayusculas

Solutions on MaxInterview for php string mayusculas by the best coders in the world

showing results for - "php string mayusculas"
Anton
24 Jan 2016
1
2<?php
3$str "Mary Had A Little Lamb and She LOVED It So";
4$str = strtoupper($str);
5echo $str// muestra: MARY HAD A LITTLE LAMB AND SHE LOVED IT SO
6?>
7
8