(PHP 4 >= 4.0.2, PHP 5, PHP 7, PHP 8)
pspell_config_runtogether — 将连词视为有效复合词
此函数确定是否将连词视为合法复合词。 也就是说,“thecat”将是一个合法的复合词,尽管两个词之间应该有一个空格。更改此设置仅影响 pspell_check() 返回的结果;pspell_suggest() 仍将返回建议。
pspell_config_runtogether() 应该在调用 pspell_new_config() 之前用于配置。
版本 | 说明 |
---|---|
8.1.0 | config 参数现在期望一个 PSpell\Config 实例;以前,期望的是 资源。 |
范例 #1 pspell_config_runtogether()
<?php
$pspell_config = pspell_config_create("en");
pspell_config_runtogether($pspell_config, true);
$pspell = pspell_new_config($pspell_config);
pspell_check($pspell, "thecat");
?>