dict_quick_check_01.phpt 987 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. --TEST--
  2. enchant_dict_quick_check() function
  3. --CREDITS--
  4. marcosptf - <marcosptf@yahoo.com.br>
  5. --SKIPIF--
  6. <?php
  7. if(!extension_loaded('enchant')) die('skip, enchant not loader');
  8. if (!is_resource(enchant_broker_init())) {die("skip, resource dont load\n");}
  9. if (!is_array(enchant_broker_list_dicts(enchant_broker_init()))) {die("skip, dont has dictionary install in this machine! \n");}
  10. ?>
  11. --FILE--
  12. <?php
  13. $broker = enchant_broker_init();
  14. $dicts = enchant_broker_list_dicts($broker);
  15. $word = "aspell";
  16. if (is_resource($broker)) {
  17. echo("OK\n");
  18. $requestDict = enchant_broker_request_dict($broker, $dicts[0]['lang_tag']);
  19. if ($requestDict) {
  20. enchant_dict_quick_check($requestDict,$word,$sugs);
  21. if (is_array($sugs)) {
  22. echo("OK\n");
  23. } else {
  24. echo("dict quick check failed\n");
  25. }
  26. } else {
  27. echo("broker request dict failed\n");
  28. }
  29. } else {
  30. echo("broker is not a resource; failed;\n");
  31. }
  32. ?>
  33. --EXPECT--
  34. OK
  35. OK