如果文件不存在,则不会出现错误。因此,如果您正在调试,请检查文件是否确实存在。
(PHP 4 >= 4.0.2, PHP 5, PHP 7, PHP 8)
pspell_config_personal — 设置包含个人词典的文件
设置包含个人词典的文件。个人词典将在您调用 pspell_new_config() 后加载并使用,并将与标准词典一起使用。该文件也是 pspell_save_wordlist() 保存个人词典到的文件。
pspell_config_personal() 应该在调用 pspell_new_config() 之前在配置上使用。
版本 | 说明 |
---|---|
8.1.0 | 现在 config 参数期望一个 PSpell\Config 实例;以前,期望的是一个 资源。 |
示例 #1 pspell_config_personal()
<?php
$pspell_config = pspell_config_create("en");
pspell_config_personal($pspell_config, "/var/dictionaries/custom.pws");
$pspell = pspell_new_config($pspell_config);
pspell_check($pspell, "thecat");
?>
注意:
此函数将无法工作,除非您有 pspell .11.2 和 aspell .32.5 或更高版本。