Unix and Linux Discussions Tagged with tag |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
6 |
5,062 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
16,800 |
Shell Programming and Scripting |
|
|
|
14 |
10,596 |
What is on Your Mind? |
|
|
|
6 |
4,543 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
12,040 |
UNIX for Beginners Questions & Answers |
|
|
|
0 |
5,228 |
Shell Programming and Scripting |
|
|
|
7 |
5,294 |
Shell Programming and Scripting |
|
|
|
0 |
3,289 |
Web Development |
|
|
|
0 |
2,168 |
UNIX for Advanced & Expert Users |
|
|
|
19 |
8,196 |
Shell Programming and Scripting |
|
|
|
6 |
1,728 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
1,539 |
Shell Programming and Scripting |
|
|
|
3 |
1,775 |
Shell Programming and Scripting |
|
|
|
1 |
9,815 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
4,678 |
Red Hat |
|
|
|
4 |
3,453 |
Programming |
|
|
|
6 |
2,470 |
Shell Programming and Scripting |
|
|
|
3 |
7,373 |
Windows & DOS: Issues & Discussions |
|
|
|
2 |
4,724 |
Shell Programming and Scripting |
|
|
|
8 |
19,482 |
Shell Programming and Scripting |
|
|
|
0 |
2,663 |
UNIX and Linux RSS News |
|
|
|
0 |
2,481 |
Solaris |
|
|
|
8 |
13,735 |
Shell Programming and Scripting |
|
|
|
2 |
4,062 |
Linux |
|
|
|
13 |
7,311 |
Shell Programming and Scripting |
|
|
|
1 |
2,498 |
Shell Programming and Scripting |
|
|
|
2 |
3,266 |
Shell Programming and Scripting |
|
|
|
0 |
1,505 |
UNIX and Linux RSS News |
|
|
|
0 |
1,326 |
Software Releases - RSS News |
|
|
|
5 |
12,592 |
Shell Programming and Scripting |
|
|
|
0 |
2,200 |
UNIX and Linux RSS News |
|
|
|
0 |
18,903 |
What is on Your Mind? |
|
|
|
5 |
3,259 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
3,960 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
4,453 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
9,386 |
Post Here to Contact Site Administrators and Moderators |
|
|
|
4 |
5,637 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
4,478 |
UNIX for Dummies Questions & Answers |
ENCHANT_BROKER_REQUEST_DICT(3) 1 ENCHANT_BROKER_REQUEST_DICT(3)
enchant_broker_request_dict - create a new dictionary using a tag
SYNOPSIS
resource enchant_broker_request_dict (resource $broker, string $tag)
DESCRIPTION
create a new dictionary using tag, the non-empty language tag you wish to request a dictionary for ("en_US", "de_DE", ...)
PARAMETERS
o $broker
- Broker resource
o $tag
- A tag describing the locale, for example en_US, de_DE
RETURN VALUES
Returns a dictionary resource on success or FALSE on failure.
EXAMPLES
Example #1
A enchant_broker_request_dict(3) example
Check if a dictionary exists using enchant_broker_dict_exists(3) and request it.
<?php
$tag = 'en_US';
$broker = enchant_broker_init();
if (enchant_broker_dict_exists($broker,$tag)) {
$dict = enchant_broker_request_dict($r, $tag);
}
?>
SEE ALSO
enchant_dict_describe(3), enchant_broker_dict_exists(3), enchant_broker_free_dict(3).
PHP Documentation Group ENCHANT_BROKER_REQUEST_DICT(3)