List PHP extensions with functions
Monday, August 11th, 2008This is a quickie I thought I'd put up on my break. Although it isn't exactly complex or ground-breaking, its nice to have it at hand if you wanted to see which extensions provide particular functions (without having to refer to php.net of course!)
$exts = get_loaded_extensions();
foreach($exts as $ext) {
$flist[$ext] = get_extension_funcs($ext);
}
print_r($flist);
This is a nice starting point if you wanted to write a script that determines whether the server you're installing onto has the necessary PHP extensions loaded.