Get Available Functions
Below is a list of all of the functions available to your PHP scripts. After enabling other extensions, their functions will appear here. Clicking on a function name will bring up the PHP manual page for that function.
strtolower($b)) ? 1 : -1;
}
echo "\n";
$le = get_loaded_extensions();
usort($le, "usort_cmp");
foreach($le as $module) {
print "- $module\n";
print "
\n";
$f = get_extension_funcs($module);
usort($f, "usort_cmp");
foreach($f as $func) {
print "- $func\n";
}
print "
\n";
}
echo "
\n";
?>