Annotation of embedaddon/php/ext/gd/tests/gd_info_basic.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: gd_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--
                     24: basic test of gd_info() function
                     25: array(%d) {
                     26: %a
                     27: }
                     28: 
                     29: Done

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>