bug72596.phpt 206 B

12345678910
  1. --TEST--
  2. Bug #72596 (imagetypes function won't advertise WEBP support)
  3. --EXTENSIONS--
  4. gd
  5. --FILE--
  6. <?php
  7. var_dump(function_exists('imagewebp') === (bool) (imagetypes() & IMG_WEBP));
  8. ?>
  9. --EXPECT--
  10. bool(true)