我有一个个人的单词列表,我需要在调用它时包含在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检查new.txt -p dict.txt并保存了一个简单的单词,但说Dict的格式不正确。