“Strtoupper en PHP” Código de respuesta

cadena php a Uppwe

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

echo $uppercase;
// THIS IS LOWER CASE
Whale

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

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)

Strtoupper en PHP

$str = "upper";
//php string to uppercase
echo strtoupper($str); // => UPPER
Zidane (Vi Ly - VietNam)

Respuestas similares a “Strtoupper en PHP”

Preguntas similares a “Strtoupper en PHP”

Más respuestas relacionadas con “Strtoupper en PHP” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código