PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

BCMath funkce pro výpočty s libovolnou přesností> <aspell_new
Last updated: Sat, 24 Mar 2007

view this page in

aspell_suggest

(PHP 4 <= 4.2.3)

aspell_suggest — Nabídnout možné hláskování slova

Popis

array aspell_suggest ( int $dictionary_link, string $word )

aspell_suggest() vrátí pole možných hláskování daného slova.

Příklad 251. aspell_suggest()

$aspell_link=aspell_new ("english");

if (!aspell_check ($aspell_link, "test")) {
    $suggestions=aspell_suggest ($aspell_link, "test");

    for ($i=0; $i < count ($suggestions); $i++) {
        echo "Možné hláskování: " . $suggestions[$i] . "<br>";
    }
}



add a note add a note User Contributed Notes
aspell_suggest
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites