File:
[ELWIX - Embedded LightWeight unIX -] /
embedaddon /
php /
ext /
gd /
tests /
gd_info_basic.phpt
Revision
1.1.1.1 (vendor branch):
download - view:
text,
annotated -
select for diffs -
revision graph
Tue Feb 21 23:47:56 2012 UTC (13 years, 1 month ago) by
misho
Branches:
php,
MAIN
CVS tags:
v5_4_3elwix,
v5_4_29p0,
v5_4_29,
v5_4_20p0,
v5_4_20,
v5_4_17p0,
v5_4_17,
v5_3_10,
HEAD
php
--TEST--
gd_info()
--SKIPIF--
<?php
if (!function_exists('gd_info')) {
die('skip gd_info() not available');
}
?>
--FILE--
<?php
/* Prototype : array gd_info ( void )
* Description: Retrieve information about the currently installed GD library
* Source code: ext/standard/image.c
* Alias to functions:
*/
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
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>