mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
20 lines
219 B
PHP
20 lines
219 B
PHP
--TEST--
|
|
gd_info()
|
|
--EXTENSIONS--
|
|
gd
|
|
--FILE--
|
|
<?php
|
|
|
|
echo "basic test of gd_info() function\n";
|
|
|
|
var_dump(gd_info());
|
|
|
|
echo "\nDone\n";
|
|
?>
|
|
--EXPECTF--
|
|
basic test of gd_info() function
|
|
array(%d) {
|
|
%a
|
|
}
|
|
|
|
Done
|