mcrypt_module_self_test

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

mcrypt_module_self_test��ָ��ģ����ִ���Լ�

Warning

This function has been DEPRECATED as of PHP 7.1.0. Relying on this function is highly discouraged.

˵��

mcrypt_module_self_test ( string $algorithm [, string $lib_dir ] ) : bool

��ָ��ģ����ִ���Լ졣

����

algorithm

MCRYPT_ciphername �����е�һ�����������ַ���ֵ���㷨���ơ�

lib_dir

��ѡ���� lib_dir�� ��ʾ���������㷨ģ���·����

����ֵ

�Լ�ɹ����� TRUE�� �Լ�ʧ�ܷ��� FALSE��

����

Example #1 mcrypt_module_self_test() ����

<?php
var_dump
(mcrypt_module_self_test(MCRYPT_RIJNDAEL_128)) . "\n";
var_dump(mcrypt_module_self_test(MCRYPT_BOGUS_CYPHER));
?>

�������̻������

bool(true)
bool(false)