Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
$trans = array(
"\xC3\xA4" => 'ae',
"\xC3\xB6" => 'oe',
"\xC3\xBC" => 'ue',
// …
);
$text='Hier ist ein Text mit den Umlauten ä, ö und ü';
$zeichenliste=array(
"\xC3\xA4" => 'ae',
"\xC3\xB6" => 'oe',
"\xC3\xBC" => 'ue');
$text=strtr($text,$zeichenliste);
echo $text;
<?php
header('Content-Type: text/html; charset=utf-8');
if( $_SERVER['REQUEST_METHOD'] == 'POST' ) {
$zeichenliste = array(
"\xC3\xA4" => 'ae',
"\xC3\xB6" => 'oe',
"\xC3\xBC" => 'ue'
);
echo htmlspecialchars(strtr($_POST['foobar'], $zeichenliste));
}
?>
<form action="" method="post" accept-charset="utf-8">
<input type="text" name="foobar">
<input type="submit">
</form>