mcrypt_list_algorithms

(PHP 4 >= 4.0.2, PHP 5, PHP 7 < 7.2.0, PECL mcrypt >= 1.0.0)

mcrypt_list_algorithms获取所有支持的密码的数组

警告

此函数已在 PHP 7.1.0 中 弃用,并在 PHP 7.2.0 中 移除。强烈建议不要依赖此函数。

描述

mcrypt_list_algorithms(string $lib_dir = ini_get("mcrypt.algorithms_dir")): array

获取 lib_dir 参数中所有支持算法的列表。

参数

lib_dir

指定所有算法所在的目录。如果未指定,则使用 mcrypt.algorithms_dir php.ini 指令的值。

返回值

返回包含所有支持算法的数组。

示例

示例 #1 mcrypt_list_algorithms() 示例

<?php
$algorithms
= mcrypt_list_algorithms();
print_r($algorithms);
?>

上面的示例将输出类似以下内容

Array
(
    [0] => cast-128
    [1] => gost
    [2] => rijndael-128
    [3] => twofish
    [4] => arcfour
    [5] => cast-256
    [6] => loki97
    [7] => rijndael-192
    [8] => saferplus
    [9] => wake
    [10] => blowfish-compat
    [11] => des
    [12] => rijndael-256
    [13] => serpent
    [14] => xtea
    [15] => blowfish
    [16] => enigma
    [17] => rc2
    [18] => tripledes
)

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top