pspell_config_data_dir

(PHP 5, PHP 7, PHP 8)

pspell_config_data_dir语言数据文件的位置

描述

pspell_config_data_dir(PSpell\Config $config, string $directory): bool

警告

此函数目前没有文档;只有其参数列表可用。

返回值

成功时返回 true,失败时返回 false

变更日志

版本 描述
8.1.0 config 参数现在期望一个 PSpell\Config 实例;以前,它期望一个 资源
添加注释

用户贡献的注释 1 条注释

alexxed at gmail dot com
16 年前
以下是如何在不希望或无法使用系统上安装的字典时使用 pspell 的示例。
<?
$text_to_check = 'I can sspeak English';
// 可选。清理文本
$clean_text_to_check = preg_replace('/[^a-z0-9\-\.!;]+/i', ' ', $text_to_check);
// 获取单词列表
$word_list = preg_split('/\s+/', $clean_text_to_check);

$pspell_config = pspell_config_create("en", null, null, 'utf-8');

// 如果你要使用的 aspell 字典没有安装,
// 复制 aspell 字典并将字典路径设置为这里
pspell_config_data_dir($pspell_config, "/home/alex/dictionaries/");
pspell_config_dict_dir($pspell_config, "/home/alex/dictionaries/");
$pspell_link = pspell_new_config($pspell_config);

foreach($word_list as $word) {

if (!pspell_check($pspell_link, trim($word))) {
$suggestions = pspell_suggest($pspell_link, trim($word));

echo $word . ' 拼写错误 <br />';
foreach ($suggestions as $suggestion) {
echo "\t 可能的拼写:$suggestion <br />";
}
}
else {
// 正确的拼写
}
}
?>
To Top