How to deny foreign alphabets in utf-8 in PHP 5.x (symfony)? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T21:50:27Zhttp://stackoverflow.com/feeds/question/457054http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/457054/how-to-deny-foreign-alphabets-in-utf-8-in-php-5-x-symfony2How to deny foreign alphabets in utf-8 in PHP 5.x (symfony)?unknown (google)2009-01-19T09:49:25Z2009-01-19T18:52:22Z
<p>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?</p>
http://stackoverflow.com/questions/457054/how-to-deny-foreign-alphabets-in-utf-8-in-php-5-x-symfony/457219#4572191Answer by troelskn for How to deny foreign alphabets in utf-8 in PHP 5.x (symfony)?troelskn2009-01-19T10:49:08Z2009-01-19T10:49:08Z<p>You can always convert to latin1 and then back again. That would discard any non latin1 characters. Eg.:</p>
<pre><code>$str = utf8_encode(utf8_decode($str));
</code></pre>
<p>I wonder why you want this in the first place though?</p>
http://stackoverflow.com/questions/457054/how-to-deny-foreign-alphabets-in-utf-8-in-php-5-x-symfony/457418#4574180Answer by unknown (google) for How to deny foreign alphabets in utf-8 in PHP 5.x (symfony)?unknown (google)2009-01-19T12:17:46Z2009-01-19T12:17:46Z<p>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...</p>
http://stackoverflow.com/questions/457054/how-to-deny-foreign-alphabets-in-utf-8-in-php-5-x-symfony/458696#4586960Answer by TravisO for How to deny foreign alphabets in utf-8 in PHP 5.x (symfony)?TravisO2009-01-19T18:52:22Z2009-01-19T18:52:22Z<p>If you need to pick and choose, you won't be able to avoid using regex and/or creating a list of allowed characters.</p>
<p>Yes this is not easy nor quick, but if you want to nit-pick characters, you might need to get specific.</p>