Remove windows encoding from `.php` files
[hiphop-php.git] / hphp / test / zend / good / ext / standard / tests / general_functions / get_loaded_extensions_basic.php
blob0617b26ba488f6c820693d717a7f0c530eeb4445
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===