mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
a375d54785
Cf. PR #6787. Closes GH-6994.
11 lines
206 B
PHP
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)
|