Вызов программы через shell_exec с использованием ввода текста utf-8
Перспективы: hunspell и php5 . Тестовый код из bash: user@host ~/ $ echo 'sagadījās' | hunspell -d lv_LV,en_US Hunspell 1.2.14 + sagadīties – работает правильно. Тестовый код (test.php): $encoding = "lv_LV.utf-8"; setlocale(LC_CTYPE, $encoding); // test putenv('LANG='.$encoding); // and another test $raw_response = shell_exec("LANG=$encoding; echo 'sagadījās' | hunspell -d lv_LV,en_US"); echo $raw_response; возвращается Hunspell 1.2.14 & […]