import zend standard tests
[hiphop-php.git] / hphp / test / zend / bad / ext-standard-general_functions / get_loaded_extensions_basic.php
blob1f043101dcf10646ed82a05fa38bf95d29370282
1 <?php
2 /* Prototype : array get_loaded_extensions ([ bool $zend_extensions= false ] )
3 * Description: Returns an array with the names of all modules compiled and loaded
4 * Source code: Zend/zend_builtin_functions.c
5 */
7 echo "*** Testing get_loaded_extensions() : basic functionality ***\n";
9 echo "Get loaded extensions\n";
10 var_dump(get_loaded_extensions());
13 ===DONE===