This snippet will show all of your installed extensions:
<pre>
<?php
$Extensions = get_loaded_extensions();
foreach($Extensions as $Extension) {
echo("<hr><h2>$Extension</h2>");
print_r(get_extension_funcs($Extension));
}
?>
![]() |
|
||||||||||
|
get_extension_funcsDescriptionarray get_extension_funcs ( string module_name )
This function returns the names of all the functions defined in
the module indicated by
For example the lines below
will print a list of the functions in the modules
See also: get_loaded_extensions() get_extension_funcs
CraquePipe
25-Oct-2007 08:49
This snippet will show all of your installed extensions:
JM
05-Jun-2006 07:40
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.
|