“strtoupper php” Código de respuesta

Strtoupper en 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

cadena de php mayúsculas


<?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

Código PHP para convertir a una letra pequeña

$str = strtolower($str);
Fierce Fly

PHP Cambia de aguijón a tapas

$lowercase = "this is lower case";
$uppercase = strtoupper($lowercase);

echo $uppercase;
Awful Anteater

strtoupper php

string strtoupper ( $string )
Codeblock

strtoupper php


setlocale(LC_CTYPE, 'de_DE.UTF8');

// be noted
echo strtoupper('Umlaute äöü in uppercase'); // outputs "UMLAUTE äöü IN UPPERCASE"
echo mb_strtoupper('Umlaute äöü in uppercase', 'UTF-8'); // outputs "UMLAUTE ÄÖÜ IN UPPERCASE"
Zidane (Vi Ly - VietNam)

Respuestas similares a “strtoupper php”

Preguntas similares a “strtoupper php”

Más respuestas relacionadas con “strtoupper php” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código