PHP Conference Japan 2024

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