PHP.nl

enchant_dict_add

enchant_dict_add

Add a word to personal word list

void **enchant_dict_add** EnchantDictionary $dictionary string $word

Add a word to personal word list of the given dictionary.

wordThe word to add

return.success

Voorbeeld: Adding a word to a 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_request_pwl_dict``enchant_broker_request_dict