Search Results

1
vote

Convert GB2312 to UTF-8

I might be thinking a bit too simple here, but if it's just this one plain text file, you could try the following: Replace all & by &, all …
1
vote

Check the language of string based on glyphs in PHP

This should do it: preg_match("/\p{Arabic}/u", $item['item_title']) You could make that regular expression a bit more sophisticated if you want to, but I don't thi …
3
votes

MySQL UTF Text Capacity

You could turn it into a varchar instead. The length of a varchar is limited to the number of characters you specify. The length of a tinytext field …