附加条件: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
& sagad 5 0: tagad, sagad?ties, sagaudo, sagand?, sagar?o
*
*
屏幕截图(无法使用无效字符发布代码):
似乎 shell_exec 无法正确处理 utf-8,或者可能需要一些额外的编码/解码?
编辑:我不得不使用 en_US.utf-8 来获取有效数据。