{site_name}

{site_name}

🌜 搜索

在PHP中,mcrypt_list_algorithms()函数用于列出当前安装的mcrypt扩展支持的所有加密算法

php 𝄐 0
php mcrypt_decrypt 替换函数,php mcrypt_encrypt,php mcrypt,php mcrouter,php mcv,phpmcs
在PHP中,mcrypt_list_algorithms()函数用于列出当前安装的mcrypt扩展支持的所有加密算法。

用法示例:


$algorithms = mcrypt_list_algorithms();
foreach ($algorithms as $algorithm) {
echo $algorithm . "\n";
}


该示例代码将会列出当前安装的mcrypt支持的所有加密算法,例如:"rijndael-128", "twofish", "cast-256"等等。

你可以根据自己的需要对这些加密算法进行进一步操作和使用。