ID: 50137 Updated by: j...@php.net Reported By: hrompik at gmail dot com -Status: Open +Status: Bogus Bug Type: Unknown/Other Function Operating System: Windows 7 build 7600 PHP Version: 5.2.11 New Comment:
Sorry, but your problem does not imply a bug in PHP itself. For a list of more appropriate places to ask for help using PHP, please visit http://www.php.net/support.php as this bug system is not the appropriate forum for asking support questions. Due to the volume of reports we can not explain in detail here why your report is not a bug. The support channels will be able to provide an explanation for you. Thank you for your interest in PHP. Previous Comments: ------------------------------------------------------------------------ [2009-11-11 10:43:27] hrompik at gmail dot com if (preg_match("/^[à-ÿ]+$/",'éöóê')) echo 'yes'; else echo 'no'; The same problem is not all the characters. displays no and should be yes. To work properly account for the entire alphabet list. For example working properly: if (preg_match("/^[àáâãä叿çèéêëìíîïðñòóôõö÷øùûúüýþÿ]+$/",'éöóê')) echo 'yes'; else echo 'no'; ------------------------------------------------------------------------ [2009-11-10 16:04:18] ras...@php.net Works fine for me here on a Linux box. Try it with preg_match instead of ereg. ------------------------------------------------------------------------ [2009-11-10 13:31:39] hrompik at gmail dot com This makes it possible so that I do not know much English, I could not use search, so I apologize if this message was. ------------------------------------------------------------------------ [2009-11-10 13:28:11] hrompik at gmail dot com Description: ------------ I know English bad, so use a translator. The problem is that the Russian alphabet - Cyrillic is not properly processed. Some letters are not included in the set [à-ÿ] example 'ð' or 'ô' Reproduce code: --------------- <?php $url = 'ô-ô'; if (ereg("^([à-ÿ]+)-([à-ÿ]+)$",$url)) echo 'yes'; else echo 'no'; ?> Expected result: ---------------- yes Actual result: -------------- no ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=50137&edit=1