various documentation and minor refactor
[hiphop-php.git] / hphp / test / zend / good / ext / standard / tests / general_functions / get_loaded_extensions_basic.php
blob04cef5e1a49f0dde5fabefc216e4a959b56671bd
1 <?hh
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 */
6 <<__EntryPoint>> function main(): void {
7 echo "*** Testing get_loaded_extensions() : basic functionality ***\n";
9 echo "Get loaded extensions\n";
10 var_dump(get_loaded_extensions());
12 echo "===DONE===\n";