PHP Conference Japan 2024

enchant_dict_add

(PHP 8)

enchant_dict_add将单词添加到个人词典

描述

enchant_dict_add(EnchantDictionary $dictionary, string $word): void

将单词添加到给定字典的个人词典中。

参数

dictionary

enchant_broker_request_dict()enchant_broker_request_pwl_dict() 返回的 Enchant 字典。

word

要添加的单词

返回值

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

变更日志

版本 描述
8.0.0 dictionary 现在期望一个 EnchantDictionary 实例;以前,期望一个 resource

示例

示例 #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);

?>

参见

添加注释

用户贡献的笔记

此页面没有用户贡献的笔记。
To Top