<?php
str|false iconv ( str $from_encoding ,
str $to_encoding ,
str $string )
where,
$from_encoding = The input charset
$to_encoding = The output charset
$string = The STRING to be converted
?>
<?php
$str01 = 'Dies ist ein Beispiel für die Anwendung der iconv-Funktion in deutscher Sprache.';
$in_chrs01 = 'UTF-8';
$out_chrs01 = 'Windows-1255//TRANSLIT';
$strr01 = iconv($in_chrs01, $out_chrs01, $str01);
echo $strr01 . '<br><br>';
?>
<?php
setlocale(LC_CTYPE, "de", "de-de", "de_DE");
$str02 = 'Dies ist ein Beispiel für die Anwendung der iconv-Funktion in deutscher Sprache.';
$in_chrs02 = 'Windows-1255';
$out_chrs02 = 'UTF-8';
$strr02 = iconv($in_chrs02, $out_chrs02, $str02);
echo $strr02 . '<br><br>';
?>