(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");
?>