enchant_dict_describe

(PHP 5 >= 5.3.0, PHP 7, PECL enchant >= 0.1.0 )

enchant_dict_describeDescribes an individual dictionary

설명

mixed enchant_dict_describe ( resource $dict )

Returns the details of the dictionary.

인수

dict

Dictionary resource

반환값

성공 시 TRUE를, 실패 시 FALSE를 반환합니다.

예제

Example #1 A enchant_dict_describe() example

Check if a dictionary exists using enchant_broker_dict_exists() and show the detail of it.

<?php
$tag 
'en_US';
$broker enchant_broker_init();
if (
enchant_broker_dict_exists($broker,$tag)) {
    
$dict enchant_broker_request_dict($r$tag);
    
$dict_details enchant_dict_describe($dict);
    
print_r($dict_details);
}
?>

위 예제의 출력 예시:

Array
(
    [lang] => en_US
    [name] => aspell
    [desc] => Aspell Provider
    [file] => /usr/lib/enchant/libenchant_aspell.so
)

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top