• 首页
  • vue
  • TypeScript
  • JavaScript
  • scss
  • css3
  • html5
  • php
  • MySQL
  • redis
  • jQuery
  • mcrypt_list_modes()

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

    获取所支持的模式

    Warning

    This function has beenDEPRECATEDas of PHP 7.1.0. Relying on this functionis highly discouraged.

    说明

    mcrypt_list_modes([string $lib_dir= ini_get("mcrypt.modes_dir")]): array

    获取$lib_dir中包含的受支持的模式。

    参数

    $lib_dir

    指定模式所在的位置。如果未指定,将使用php.ini中的mcrypt.modes_dir指示所指定的位置。

    返回值

    以数组形式返回受支持的模式。

    范例

    mcrypt_list_modes()例程

    <?php
        $modes = mcrypt_list_modes();
        foreach ($modes as $mode) {
            echo "$mode <br />\n";
        }
    ?>
    

    本例程列出在默认目录中所有受支持的模式。如果在php.ini中未指定mcrypt.modes_dir,则使用默认的 mcrypt 库安装目录(/usr/local/lib/libmcrypt)。