(PHP 8)
enchant_dict_add — 将单词添加到个人词典
dictionary
由 enchant_broker_request_dict() 或 enchant_broker_request_pwl_dict() 返回的 Enchant 词典。
word
要添加的单词
版本 | 说明 |
---|---|
8.0.0 |
dictionary 现在需要一个 EnchantDictionary 实例;之前需要一个 资源。 |
示例 #1 将单词添加到 PWL
<?php
$filename = './my_word_list.pwl';
$word = 'Supercalifragilisticexpialidocious';
$broker = enchant_broker_init();
$dict = enchant_broker_request_pwl_dict($broker, $filename);
enchant_dict_add($dict, $word);
enchant_broker_free($broker);
?>