(PHP 4 >= 4.0.2, PHP 5, PHP 7 < 7.2.0, PECL mcrypt >= 1.0.0)
mcrypt_list_modes — 獲取所支持的模式
本函數(shù)已自 PHP 7.1.0 起廢棄。強(qiáng)烈建議不要使用本函數(shù)。
$lib_dir
= ini_get("mcrypt.modes_dir")): array
獲取 lib_dir
中
包含的受支持的模式。
lib_dir
指定模式所在的位置。
如果未指定,將使用 php.ini
中的 mcrypt.modes_dir
指示所指定的位置。
以數(shù)組形式返回受支持的模式。
示例 #1 mcrypt_list_modes() 例程
<?php
$modes = mcrypt_list_modes();
foreach ($modes as $mode) {
echo "$mode <br />\n";
}
?>
本例程列出在默認(rèn)目錄中
所有受支持的模式。
如果在 php.ini 中未指定 mcrypt.modes_dir
,
則使用默認(rèn)的 mcrypt 庫
安裝目錄(/usr/local/lib/libmcrypt)。