xref: /PHP-5.5/ext/gd/tests/gd_info_basic.phpt (revision a7de596d)
1--TEST--
2gd_info()
3--SKIPIF--
4<?php
5	if (!function_exists('gd_info')) {
6		die('skip gd_info() not available');
7	}
8?>
9--FILE--
10<?php
11
12/* Prototype  : array gd_info  ( void  )
13 * Description: Retrieve information about the currently installed GD library
14 * Source code: ext/standard/image.c
15 * Alias to functions:
16 */
17	echo "basic test of gd_info() function\n";
18
19	var_dump(gd_info());
20
21	echo "\nDone\n";
22?>
23--EXPECTF--
24basic test of gd_info() function
25array(%d) {
26%a
27}
28
29Done
30