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.
(PHP 4, PHP 5, PHP 7, PHP 8)
get_extension_funcs — Restituisce una matrice con i nomi delle funzioni di un modulo
Questa funzione restituisce i nomi di tutte le funzioni definite all'interno
del modulo indicato da module_name
.
Nota:
Il parametro
module_name
deve essere in minuscolo.
Ad esempio, il seguente comando:
<?php
print_r(get_extension_funcs("xml"));
print_r(get_extension_funcs("gd"));
?>
visualizzerĂ l'elenco delle funzioni definite nei moduli xml e gd.
Vedere anche: get_loaded_extensions()