Changeset 61 for trunk/includes/global_function.php
- Timestamp:
- Feb 4, 2009, 9:51:34 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/global_function.php
r59 r61 5 5 define('LICENCE_MODERATOR', 1); 6 6 define('LICENCE_ADMIN', 2); 7 8 function utf2ascii($text) 9 { 10 $return = Str_Replace( 11 Array("á","č","ď","é","ě","í","ľ","ň","ó","ř","š","ť","ú","ů","ý","ž","Á","Č","Ď","É","Ě","Í","Ľ","Ň","Ó","Ř","Š","Ť","Ú","Ů","Ý","Ž") , 12 Array("a","c","d","e","e","i","l","n","o","r","s","t","u","u","y","z","A","C","D","E","E","I","L","N","O","R","S","T","U","U","Y","Z") , 13 $text); 14 //$return = Str_Replace(Array(" ", "_"), "-", $return); //nahradí mezery a podtržítka pomlčkami 15 //$return = Str_Replace(Array("(",")",".","!",",","\"","'"), "", $return); //odstraní ().!,"' 16 //$return = StrToLower($return); // velká písmena nahradí malými. 17 return($return); 18 } 7 19 8 20 function FormatOutput($s)
Note:
See TracChangeset
for help on using the changeset viewer.