(PHP 4 >= 4.0.2, PHP 5, PHP 7, PHP 8)
pspell_add_to_personal — 將單字加入個人單字清單
pspell_add_to_personal() 將單字加入個人單字清單。如果您使用 pspell_new_config() 搭配 pspell_config_personal() 來開啟字典,您可以之後使用 pspell_save_wordlist() 儲存單字清單。
版本 | 說明 |
---|---|
8.1.0 | dictionary 參數現在需要一個 PSpell\Dictionary 實例;先前需要的是一個 資源。 |
範例 #1 pspell_add_to_personal()
<?php
$pspell_config = pspell_config_create("en");
pspell_config_personal($pspell_config, "/var/dictionaries/custom.pws");
$pspell = pspell_new_config($pspell_config);
pspell_add_to_personal($pspell, "Vlad");
pspell_save_wordlist($pspell);
?>
注意:
除非您使用 pspell .11.2 和 aspell .32.5 或更高版本,否則此函式將無法運作。