View file autoindex/textmaker/chars.inc.php

File size: 2.16Kb
<?

// Diese Date MUSS im UTF-8 Format gespeichert werden!!!
// This file must be saved in UTF-8 format!!!


// Zeichen, die ersetzt werden sollen
// Chars to replace
// Use $text
$chars = array('a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z');

// Reihe 1
// Row 1
$row1_new = array('α','в','¢','∂','є','ƒ','g','н','ι','נ','к','ℓ','м','η','σ','ρ','q','я','ѕ','т','υ','ν','ω','χ','у','z');
$row1 = str_replace($chars,$row1_new,$text);

// Reihe 2
// Row 2
$row2_new = array('4','8','(','d','3','f','9','h','!','j','k','1','m','n','0','p','q','r','5','7','u','v','w','x','y','2');
$row2 = str_replace($chars,$row2_new,$text);

// Reihe 3
// Row 3
$row3_new=array('Á','ß','Č','Ď','Ĕ','Ŧ','Ğ','Ĥ','Ĩ','Ĵ','Ķ','Ĺ','M','Ń','Ő','P','Q','Ŕ','Ś','Ť','Ú','V','Ŵ','Ж','Ŷ','Ź');
$row3 = str_replace($chars,$row3_new,$text);

// Reihe 4
// Row 4
$row4_new=array('ค','๒','ς','๔','є','Ŧ','ﻮ','ђ','เ','ן','к','l','๓','ภ','๏','ק','ợ','г','ร','t','ย','ש','ฬ','א','ץ','z');
$row4 = str_replace($chars,$row4_new,$text);

// Reihe 5
// Row 5
$row5_new=array('ä','b','ċ','d','ë','f','ġ','h','ï','j','k','l','m','n','ö','p','q','r','s','t','ü','v','w','x','ÿ','ż');
$row5 = str_replace($chars,$row5_new,$text);

// Reihe 6
// Row 6
$row6_new=array('á','b','ć','d','é','f','g','h','í','j','k','l','m','ń','ő','p','q','ŕ','ś','t','ú','v','w','x','ý','ź');
$row6 = str_replace($chars,$row6_new,$text);

// Reihe 7
// Row 7
$row7_new=array('Λ','B','ᄃ','D','Σ','F','G','Ή','I','J','K','ᄂ','M','П','Ө','P','Q','Я','Ƨ','Ƭ','Ц','V','Щ','X','Y','Z');
$row7 = str_replace($chars,$row7_new,$text);

// Reihe 8
// Row 8
$row8_new=array('ム','乃','c','d','乇','キ','g','ん','ノ','フ','ズ','レ','ᄊ','刀','o','ア','q','尺','丂','イ','u','√','w','メ','リ','乙');
$row8 = str_replace($chars,$row8_new,$text);

// Reihe 9
// Row 9
$row9_new=array('ⓐ','ⓑ','©','ⓓ','ⓔ','ⓕ','ⓖ','ⓗ','ⓘ','ⓙ','ⓚ','ⓛ','ⓜ','ⓝ','ⓞ','ⓟ','ⓠ','ⓡ','ⓢ','ⓣ','ⓤ','ⓥ','ⓦ','ⓧ','ⓨ','ⓩ');
$row9 = str_replace($chars,$row9_new,$text);

?>