get_loaded_extensions() 是一個內置函數,它返回 PHP 中已加載和編譯的模塊的數組。
用法:
get_loaded_extensions(bool $zend_extensions = false):
Parameters: 該函數隻有一個參數。
- $zend_extensions: 它隻返回 zend 擴展,如果沒有,則列出常規擴展,例如MySQLi。默認為“false”(返回常規擴展名)。
返回值:
- 該函數返回所有已加載函數的associative array ,並帶有索引。
示例 1:下麵的代碼片段演示了get_loaded_extensions()函數。
PHP
<?php
print_r(get_loaded_extensions());
?>
輸出:
Array
(
[0] => Core
[1] => date
[2] => libxml
[3] => openssl
[4] => pcre
[5] => zlib
[6] => filter
[7] => hash
[8] => json
[9] => pcntl
[10] => Reflection
[11] => SPL
[12] => session
[13] => standard
[14] => sodium
[15] => mysqlnd
[16] => PDO
[17] => calendar
[18] => ctype
[19] => exif
[20] => FFI
[21] => fileinfo
[22] => ftp
[23] => gettext
[24] => iconv
[25] => mysqli
[26] => pdo_mysql
[27] => Phar
[28] => posix
[29] => readline
[30] => shmop
[31] => sockets
[32] => sysvmsg
[33] => sysvsem
[34] => sysvshm
[35] => tokenizer
[36] => Zend OPcache
)
示例 2:下麵的代碼片段演示了get_loaded_extensions()函數。
PHP
<?php
print_r(get_loaded_extensions(true));
?>
輸出:
Array ( [0] => Zend OPcache )
參考: https://www.php.net/manual/en/function.get-loaded-extensions.php
相關用法
- PHP get_class_vars()用法及代碼示例
- PHP get_declared_interfaces()用法及代碼示例
- PHP get_parent_class()用法及代碼示例
- PHP get_meta_tags()用法及代碼示例
- PHP get_resource_id()用法及代碼示例
- PHP get_resource_type()用法及代碼示例
- PHP get_html_translation_table()用法及代碼示例
- PHP get_browser()用法及代碼示例
- PHP get_defined_vars()用法及代碼示例
- PHP get_headers()用法及代碼示例
- PHP get_class()用法及代碼示例
- PHP get_class_methods()用法及代碼示例
- PHP get_called_class()用法及代碼示例
- PHP get_object_vars()用法及代碼示例
- PHP get_declared_classes()用法及代碼示例
- PHP get_included_files()用法及代碼示例
- PHP get_current_user()用法及代碼示例
- PHP get_defined_functions()用法及代碼示例
- PHP get_mangled_object_vars()用法及代碼示例
- PHP get_resources()用法及代碼示例
- PHP get_include_path()用法及代碼示例
- PHP get_defined_constants()用法及代碼示例
- PHP getrandmax()用法及代碼示例
- PHP getcwd()用法及代碼示例
- PHP getdate()用法及代碼示例
注:本文由純淨天空篩選整理自neeraj3304大神的英文原創作品 PHP get_loaded_extensions() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。