if you want to sort the extensions from a to z the easiest way is to use natcasesort.
(PHP 4, PHP 5, PHP 7, PHP 8)
get_loaded_extensions — コンパイル/ロードされている全てのモジュールの名前を配列として返す
この関数は、PHPインタプリタにコンパイル、 ロードされている全てのモジュールの名前を返します。
zend_extensions
Zend 拡張モジュールのみを返します。指定しない場合は、
mysqli のような通常の拡張モジュールを返します。デフォルトは
false
(通常の拡張モジュールを返す) です。
モジュール名の配列を返します。
例1 get_loaded_extensions() の例
<?php
print_r(get_loaded_extensions());
?>
上の例の出力は、 たとえば以下のようになります。
Array ( [0] => Core [1] => date [2] => libxml [3] => pcre [4] => sqlite3 [5] => zlib [6] => ctype [7] => dom [8] => fileinfo [9] => filter [10] => hash [11] => json [12] => mbstring [13] => SPL [14] => PDO [15] => session [16] => posix [17] => Reflection [18] => standard [19] => SimpleXML [20] => pdo_sqlite [21] => Phar [22] => tokenizer [23] => xml [24] => xmlreader [25] => xmlwriter [26] => gmp [27] => iconv [28] => intl [29] => bcmath [30] => sodium [31] => Zend OPcache )
if you want to sort the extensions from a to z the easiest way is to use natcasesort.