ru_php/ext/gd/tests/bug72596.phpt

11 lines
206 B
PHP

--TEST--
Bug #72596 (imagetypes function won't advertise WEBP support)
--EXTENSIONS--
gd
--FILE--
<?php
var_dump(function_exists('imagewebp') === (bool) (imagetypes() & IMG_WEBP));
?>
--EXPECT--
bool(true)