PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

get_include_path> <get_defined_constants
Last updated: Fri, 18 Jul 2008

view this page in

get_extension_funcs

(PHP 4, PHP 5)

get_extension_funcs — Restituisce una matrice con i nomi delle funzioni di un modulo

Descrizione

array get_extension_funcs ( string $module_name )

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()



add a note add a note User Contributed Notes
get_extension_funcs
JM
05-Jun-2006 04: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.

get_include_path> <get_defined_constants
Last updated: Fri, 18 Jul 2008
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites