“STRTOUPPER PHP” Respostas de código

strtoupper em 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

Código PHP para converter em uma pequena carta

$str = strtolower($str);
Fierce Fly

PHP Altere a picada para tampas

$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)

Respostas semelhantes a “STRTOUPPER PHP”

Perguntas semelhantes a “STRTOUPPER PHP”

Mais respostas relacionadas para “STRTOUPPER PHP” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código