PHP: enchant_broker_dict_exists - Manual in Deutsh
PHP: enchant_broker_dict_exists - Manual in French
PHP: enchant_broker_dict_exists - Manual in Polish

You Are At PHP: enchant_broker_dict_exists - Manual Area


recent searches:
include functions , variable functions , post functions...




If you are new to PHP or just need to refresh your skills, this is the place to start. This series of tutorials will give you the basic knowledge you will need to create a simple PHP website.

PHP is a reflective programming language originally designed for producing dynamic web pages.[1] PHP is used mainly in server-side scripting, but can be used from a command line interface or in standalone graphical applications. Textual User Interfaces can also be created using ncurses.

PHP Manual
PrevNext

enchant_broker_dict_exists

(PECL)

enchant_broker_dict_exists -- Wether a dictionary exists or not. Using non-empty tag

Description

bool enchant_broker_dict_exists ( resource broker, string tag )

Tells if a dictionary exists or not, using a non-empty tags

Parameters

broker

Broker resource

tag

non-empty tag in the LOCALE format, ex: us_US, ch_DE, etc.

Return Values

Returns TRUE when the tag exist or FALSE when not.

Examples

Example 1. A enchant_broker_dict_exists() example

<?php
$tag
= 'en_US';
$r = enchant_broker_init();
if (
enchant_broker_dict_exists($r,$tag)) {
    echo
$tag . " dictionary found.\n";
}
?>

See Also

enchant_broker_describe()

szkolenia zawodowe kursy zawodowe przygotowanie do zawodu
Crm dedykowany
najlepsza strona blogs o UKS profesjonalne wyniki
Skuteczne pozycjonowanie stron łódź i cała Polska.
przetargi Adamówka

Another Useful functions:


ref.enchant | function.enchant-dict-suggest | function.enchant-dict-store-replacement | function.enchant-dict-quick-check | function.enchant-dict-is-in-session | function.enchant-dict-get-error | function.enchant-dict-describe | function.enchant-dict-check | function.enchant-dict-add-to-session | function.enchant-dict-add-to-personal | function.enchant-broker-set-ordering | function.enchant-broker-request-pwl-dict | function.enchant-broker-request-dict | function.enchant-broker-list-dicts | function.enchant-broker-init | function.enchant-broker-get-error | function.enchant-broker-free | function.enchant-broker-free-dict | function.enchant-broker-dict-exists | function.enchant-broker-describe |


PHP is a widely-used general-purpose scripting language that is especially suited for Web development and can be embedded into HTML. If you are new to PHP and want to get some idea of how it works, try the introductory tutorial. After that, check out the online manual, and the example archive sites and some of the other resources available in the links section.