php-8.0.30-src/ext/standard/tests/image/getimagesize_wbmp.phpt

26 lines
414 B
PHP

--TEST--
GetImageSize() for wbmp format
--FILE--
<?php
echo "*** Testing getimagesize() : wbmp format ***\n";
var_dump(getimagesize(__DIR__ . "/75x50.wbmp", $arr));
var_dump($arr);
?>
--EXPECT--
*** Testing getimagesize() : wbmp format ***
array(5) {
[0]=>
int(75)
[1]=>
int(50)
[2]=>
int(15)
[3]=>
string(22) "width="75" height="50""
["mime"]=>
string(18) "image/vnd.wap.wbmp"
}
array(0) {
}