“Strtoupper in PHP” Code-Antworten

PHP -Zeichenfolge zu Uppwe

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

echo $uppercase;
// THIS IS LOWER CASE
Whale

Strtoupper in 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 ändern Stachel zu Kappen

$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 in PHP

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

Ähnliche Antworten wie “Strtoupper in PHP”

Fragen ähnlich wie “Strtoupper in PHP”

Weitere verwandte Antworten zu “Strtoupper in PHP” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen