blob: a6d162c3db801cd4d54fbf0080a39aeaf016ddd3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--TEST--
Bug #44849 (imagecolorclosesthwb is not available on Windows)
--SKIPIF--
<?php
if(!extension_loaded('gd')){ die('skip gd extension not available'); }
?>
--FILE--
<?php
var_dump(function_exists('imagecolorclosesthwb'));
?>
--EXPECTF--
bool(true)
|