WmZilla - Webmaster and Marketplace

The Next Generation Webmaster and Trade Forum

Issue with Turkish characters.

Hashigato

New member

0

0%

Status

Offline

Posts

45

Likes

0

Rep

0

Bits

235

5

Months of Service

0%
Hello, I hope I didn't open the topic in the wrong place. It's really difficult to become a member here ;) Anyway, friends, I am encountering errors in the etiket URLs due to Turkish characters issue because it is the Xyz site, so I didn’t find it appropriate to put a link. For example, it should be "ogrencietiket/ogrenci/" but I am getting it as "etiket/renci/" without changing any Turkish characters. I hope that was explanatory.

Here is the corrected function for unescaping Turkish characters:
```php
function un_escape($string){
$string = preg_replace("/%u0130/", "?", $string);
$string = preg_replace("/?/", "?", $string);
$string = preg_replace("/?/", "?", $string);
$string = preg_replace("/?/", "?", $string);
$string = preg_replace("/?/", "?", $string);
$string = preg_replace("/?/", "?", $string);
$string = preg_replace("/%FC/", "ü", $string);
$string = preg_replace("/%DC/", "ü", $string);
$string = preg_replace("/%F6/", "ö", $string);
$string = preg_replace("/%D6/", "Ö", $string);
$string = preg_replace("/%E7/", "ç", $string);
$string = preg_replace("/%C7/", "Ç", $string);
return $string;
}
```

If you are having any issues with slashes, you can use the `slash` function and modify the parameters as needed.

Additionally, there are various other functions in the provided content related to caching, language translation, character manipulation, and more.

Please note that this content seems to be a mix of PHP code related to website development. Let me know if you need help with any specific part of it.
 

249

6,622

6,642

Top