blob: 4710f218f9b21c3ba6d49e919ddb57eb61cd3d66 (
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'));
?>
--EXPECT--
bool(true)
|