Annotation of embedaddon/php/ext/standard/tests/general_functions/get_loaded_extensions_basic.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Test get_loaded_extensions() function : basic functionality 
        !             3: --FILE--
        !             4: <?php
        !             5: /* Prototype  : array get_loaded_extensions  ([ bool $zend_extensions= false  ] )
        !             6:  * Description:  Returns an array with the names of all modules compiled and loaded
        !             7:  * Source code: Zend/zend_builtin_functions.c
        !             8:  */            
        !             9: 
        !            10: echo "*** Testing get_loaded_extensions() : basic functionality ***\n";
        !            11: 
        !            12: echo "Get loaded extensions\n";
        !            13: var_dump(get_loaded_extensions());
        !            14: 
        !            15: ?>
        !            16: ===DONE===
        !            17: --EXPECTF--
        !            18: *** Testing get_loaded_extensions() : basic functionality ***
        !            19: Get loaded extensions
        !            20: array(%d) {
        !            21: %a
        !            22: }
        !            23: ===DONE===

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