pspell_config_runtogether
pspell_config_runtogether
Consider run-together words as valid compounds
bool **pspell_config_runtogether** PSpell\Config $config bool $allow
This function determines whether run-together words will be treated as
legal compounds. That is, "thecat" will be a legal compound, although
there should be a space between the two words. Changing this setting only
affects the results returned by ;
will still return suggestions.
pspell_check``pspell_suggest
should be used on a config
before calling .
pspell_config_runtogether``pspell_new_config
config``allowtrue if run-together words should be treated as legal compounds,
false otherwise.
return.success
<?php
$pspell_config = pspell_config_create("en");
pspell_config_runtogether($pspell_config, true);
$pspell = pspell_new_config($pspell_config);
pspell_check($pspell, "thecat");
?>