pspell_config_runtogether

(PHP 4 >= 4.0.2, PHP 5, PHP 7, PHP 8)

pspell_config_runtogether将连词视为有效复合词

说明

pspell_config_runtogether(PSpell\Config $config, bool $allow): bool

此函数确定是否将连词视为合法复合词。 也就是说,“thecat”将是一个合法的复合词,尽管两个词之间应该有一个空格。更改此设置仅影响 pspell_check() 返回的结果;pspell_suggest() 仍将返回建议。

pspell_config_runtogether() 应该在调用 pspell_new_config() 之前用于配置。

参数

config

一个 PSpell\Config 实例。

allow

如果连词应该被视为合法复合词,则为 **true**,否则为 **false**。

返回值

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

变更日志

版本 说明
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");
?>

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top