get_loaded_extensions
get_loaded_extensions
get_loaded_extensions
- It returns an array with the names of all modules compiled and loaded.
Syntax:
array get_loaded_extensions ( void)
This function returns the names of all the modules compiled and loaded in the PHP interpreter.
Example:
$result = get_loaded_extensions();
print_r($result);
The Content in $result is
Array
(
[0] => bcmath
[1] => calendar
[2] => com_dotnet
[3] => ctype
[4] => ftp
[5] => iconv
[6] => odbc
[7] => pcre
[8] => session
[9] => SPL
[10] => SQLite
[11] => standard
[12] => tokenizer
[13] => zlib
[14] => libxml
[15] => dom
[16] => SimpleXML
[17] => wddx
[18] => xml
[19] => curl
[20] => mysql
)
