2

我有一个个人单词列表,我需要在调用 aspell 字典时将这些单词包含在其中。我需要先从命令行检查它,然后将它实现到 PHP 拼写检查器插件(TinyMCE)中,我需要相应地更改 PHP 代码。谁能帮我 ?

function TinyPspellShell(&$config, $lang, $mode, $spelling, $jargon, $encoding) {
    $this->lang = $lang;
    $this->mode = $mode;
    $this->error = false;
    $this->errorMsg = array();

    $this->tmpfile = tempnam($config['tinypspellshell.tmp'], "tinyspell");

    if(preg_match("#win#i",php_uname()))
        $this->cmd = '"' . $config['tinypspellshell.aspell']  . '"' . " -a --lang=". $this->lang." --encoding=utf-8 -H < $this->tmpfile 2>&1";
    else
        $this->cmd = "cat ". $this->tmpfile ." | " . $config['tinypspellshell.aspell'] . " -a --encoding=utf-8 -H --lang=". $this->lang;
}

我尝试 $aspell check new.txt -p dict.txt 保存了一个简单的单词,但说 Dict not in correct form 。

4

0 回答 0