The functions described in this article are actually available in the PHP manual. However, these functions are independent and difficult to find, so we will introduce them separately for easy reference.
1. Get all available modules-get_loaded_extensions this function returns all loaded (available) modules.
Usage:
Copy codeThe Code is as follows:
Print_r (get_loaded_extensions ());
2. Obtain the available functions of the specified module-get_extension_funcs. This function returns all available functions of the specified module. The input parameter (Module name) must be in lowercase.
Usage:
Copy codeThe Code is as follows:
Print_r (get_extension_funcs ("gd "));
3. Get all defined functions-get_defined_functions this function returns all defined functions, including built-in functions and user-defined functions.
Usage:
Copy codeThe Code is as follows:
Function myrow ($ id, $ data ){
Return "<tr> <th> $ id </th> <td> $ data </td> </tr> \ n ";
}
$ Arr = get_defined_functions ();
Print_r ($ arr );
Output:
Copy codeThe Code is as follows:
Array
(
[Internal] => Array
(
[0] => zend_version
[1] => func_num_args
[2] => func_get_arg
[3] => func_get_args
[4] => strlen
[5] => strcmp
[6] => strncmp
...
[1, 750] => bcscale
[751] => bccomp
)
[User] => Array
(
[0] => myrow
)
)
$ Arr ["internal"] is a built-in function, and $ arr ["user"] is a user-defined function.
4. Check whether the specified function exists-function_exists. This function returns whether the specified function has been defined.
Usage:
Copy codeThe Code is as follows:
If (function_exists ('imap _ open ')){
Echo "IMAP functions are available. <br/> \ n ";
} Else {
Echo "IMAP functions are not available. <br/> \ n ";
}