extension_loaded
(PHP 4, PHP 5, PHP 7, PHP 8)
extension_loaded — ある拡張モジュールがロードされているかどうかを調べる
パラメータ
extension
-
拡張モジュールの名前。大文字小文字を区別します。
phpinfo()を使って種々の拡張モジュールの 名前を見ることができます。PHP の
CGI
またはCLI
バージョン を使っている場合には -m スイッチで、 使用できる全ての拡張モジュールのリストを得ることができます:$ php -m [PHP Modules] xml tokenizer standard sockets session posix pcre overload mysql mbstring ctype [Zend Modules]
例
例1 extension_loaded() の例
<?php
if (!extension_loaded('gd')) {
if (!dl('gd.so')) {
exit;
}
}
?>
参考
- get_loaded_extensions() - コンパイル/ロードされている全てのモジュールの名前を配列として返す
- get_extension_funcs() - あるモジュールの関数名を配列として返す
- phpinfo() - PHP の設定情報を出力する
- dl() - 実行時に PHP 拡張モジュールをロードする
- function_exists() - 指定した関数が定義されている場合に true を返す
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google