(PHP 4, PHP 5)
This function returns the names of all the functions defined in the module indicated by module_name.
Замечание: The module_name parameter must be in lowercase.
For example the lines below
<?php print_r(get_extension_funcs("xml")); print_r(get_extension_funcs("gd")); ?>
will print a list of the functions in the modules xml and gd respectively.
See also: get_loaded_extensions()
FALSE is returned if there are no functions in that extension. For example, <?php get_extension_funcs("xmlreader"); ?> returns FALSE because that extension defines the XMLReader class but not functions.