array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'tr', ), 'this' => array ( 0 => 'function.pspell-save-wordlist.php', 1 => 'pspell_save_wordlist', 2 => 'Save the personal wordlist to a file', ), 'up' => array ( 0 => 'ref.pspell.php', 1 => 'Pspell İşlevleri', ), 'prev' => array ( 0 => 'function.pspell-new-personal.php', 1 => 'pspell_new_personal', ), 'next' => array ( 0 => 'function.pspell-store-replacement.php', 1 => 'pspell_store_replacement', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/pspell/functions/pspell-save-wordlist.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

pspell_save_wordlist

(PHP 4 >= 4.0.2, PHP 5, PHP 7, PHP 8)

pspell_save_wordlistSave the personal wordlist to a file

Açıklama

pspell_save_wordlist(PSpell\Dictionary $dictionary): bool

pspell_save_wordlist() saves the personal wordlist from the current session. The location of files to be saved specified with pspell_config_personal() and (optionally) pspell_config_repl().

Bağımsız Değişkenler

dictionary

PSpell\Dictionary örneği.

Dönen Değerler

Başarı durumunda true, başarısızlık durumunda false döner.

Sürüm Bilgisi

Sürüm: Açıklama
8.1.0 The dictionary parameter expects an PSpell\Dictionary instance now; previously, a resource was expected.

Örnekler

Örnek 1 pspell_add_to_personal()

<?php
$pspell_config
= pspell_config_create("en");
pspell_config_personal($pspell_config, "/tmp/dicts/newdict");
$pspell = pspell_new_config($pspell_config);

pspell_add_to_personal($pspell, "Vlad");
pspell_save_wordlist($pspell);
?>

Notlar

Bilginize:

This function will not work unless you have pspell .11.2 and aspell .32.5 or later.