gettext_bindtextdomain-path.phpt 277 B

1234567891011121314
  1. --TEST--
  2. Test if bindtextdomain() returns false if path does not exist.
  3. --EXTENSIONS--
  4. gettext
  5. --FILE--
  6. <?php
  7. chdir(__DIR__);
  8. var_dump(bindtextdomain('example.org', 'foobar'));
  9. ?>
  10. --EXPECT--
  11. bool(false)
  12. --CREDITS--
  13. Till Klampaeckel, till@php.net
  14. PHP Testfest Berlin 2009-05-09