Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
php-7.4.33 /
ext /
enchant /
tests /
Delete
Unzip
Name
Size
Permission
Date
Action
broker_describe.phpt
1
KB
-rw-rw-r--
2022-10-31 11:36
broker_dict_exists.phpt
634
B
-rw-rw-r--
2022-10-31 11:36
broker_free.phpt
452
B
-rw-rw-r--
2022-10-31 11:36
broker_free_01.phpt
542
B
-rw-rw-r--
2022-10-31 11:36
broker_free_02.phpt
1.52
KB
-rw-rw-r--
2022-10-31 11:36
broker_free_dict.phpt
1.26
KB
-rw-rw-r--
2022-10-31 11:36
broker_get_error.phpt
600
B
-rw-rw-r--
2022-10-31 11:36
broker_init.phpt
419
B
-rw-rw-r--
2022-10-31 11:36
broker_list_dicts.phpt
793
B
-rw-rw-r--
2022-10-31 11:36
broker_request_dict.phpt
838
B
-rw-rw-r--
2022-10-31 11:36
broker_request_dict_01.phpt
812
B
-rw-rw-r--
2022-10-31 11:36
broker_request_pwl_dict.phpt
1013
B
-rw-rw-r--
2022-10-31 11:36
broker_set_ordering.phpt
786
B
-rw-rw-r--
2022-10-31 11:36
bug13181.phpt
1.18
KB
-rw-rw-r--
2022-10-31 11:36
bug53070.phpt
607
B
-rw-rw-r--
2022-10-31 11:36
dict_add_to_personal.phpt
1.07
KB
-rw-rw-r--
2022-10-31 11:36
dict_add_to_session.phpt
1.07
KB
-rw-rw-r--
2022-10-31 11:36
dict_check.phpt
1.03
KB
-rw-rw-r--
2022-10-31 11:36
dict_describe.phpt
1003
B
-rw-rw-r--
2022-10-31 11:36
dict_get_error.phpt
835
B
-rw-rw-r--
2022-10-31 11:36
dict_is_in_session.phpt
1.1
KB
-rw-rw-r--
2022-10-31 11:36
dict_quick_check.phpt
773
B
-rw-rw-r--
2022-10-31 11:36
dict_quick_check_01.phpt
987
B
-rw-rw-r--
2022-10-31 11:36
dict_store_replacement.phpt
1.1
KB
-rw-rw-r--
2022-10-31 11:36
dict_suggest.phpt
1008
B
-rw-rw-r--
2022-10-31 11:36
enchant_broker_request_pwl_dict.pwl
58
B
-rw-rw-r--
2022-10-31 11:36
enchant_broker_set_dict_path.phpt
1.56
KB
-rw-rw-r--
2022-10-31 11:36
Save
Rename
--TEST-- enchant_broker_describe() function --CREDITS-- marcosptf - <marcosptf@yahoo.com.br> --SKIPIF-- <?php if (!extension_loaded('enchant')) { echo "skip: Enchant extension not enabled\n"; exit; } $broker = enchant_broker_init(); if (!$broker) { echo "skip: Unable to init broker\n"; exit; } if (!enchant_broker_describe($broker)) { enchant_broker_free($broker); echo "skip: No broker providers found\n"; } enchant_broker_free($broker); ?> --FILE-- <?php $broker = enchant_broker_init(); $counter = 0; if($broker) { echo("OK\n"); $provider = enchant_broker_describe($broker); if (is_array($provider)) { echo("OK\n"); if ((isset($provider[$counter]['name']) && isset($provider[$counter]['desc']) && isset($provider[$counter]['file']))) { echo("OK\n"); } else { echo("failed, broker describe\n"); } } else { echo "failed, brocker describe array \n"; } enchant_broker_free($broker); } else { echo("failed, broker_init failure\n"); } ?> --EXPECT-- OK OK OK