vote up 2 vote down star

I have to disable chinese, japanese, cyrillic (and so on) alphabets to be entered by users in my website, at validation time (only server side validation). At the same time I want all latin accented characters to be allowed. I use symfony 1.1 and PHP 5.2, using utf-8, of course. Any hint?

flag
Sounds useless to me, as users from other countries will just use transliteration (e.g. Pinyin) to get around your limitations. Can you live with that? Or are you going to implement English dictionary matching too? ;) – Checkers Jan 19 at 12:29

3 Answers

vote up 1 vote down

You can always convert to latin1 and then back again. That would discard any non latin1 characters. Eg.:

$str = utf8_encode(utf8_decode($str));

I wonder why you want this in the first place though?

link|flag
vote up 0 vote down

BTW, if a user inserts something in our DB, I need it to be written in understandable alphabet by our team and by all of our customers, for a lot of reasons. Even if this would discourage users from other countries...

link|flag
If you need to update your question, edit it, don't post answers. – TravisO Jan 19 at 18:52
You might have already forgotten, but you need to have 50rep to do this. :) – Checkers Jan 19 at 22:04
vote up 0 vote down

If you need to pick and choose, you won't be able to avoid using regex and/or creating a list of allowed characters.

Yes this is not easy nor quick, but if you want to nit-pick characters, you might need to get specific.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.