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

search for in the

get_include_path> <get_defined_constants
[edit] Last updated: Fri, 17 May 2013

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 - [1 notes]
up
1
JM
7 years ago
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.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites