Php/docs/function.mcrypt-generic-end
来自菜鸟教程
mcrypt_generic_end
(PHP 4 >= 4.0.2, PHP 5)
mcrypt_generic_end — 终止加密
Warning This function was DEPRECATED in PHP 5.3.0, and REMOVED in PHP 7.0.0.
Alternatives to this function include:
说明
mcrypt_generic_end
( resource $td
) : bool
Warning This alias was DEPRECATED in PHP 5.3.0, and REMOVED as of PHP 7.0.0.
Warning 请使用函数 mcrypt_generic_deinit() 来替代本函数, 因为当本函数和 mcrypt_module_close() 一起使用的时候, 可能会发生由重复释放缓冲区导致的崩溃。
本函数终止由加密描述符(td
)指定的加密模块。
实际上,它会清理所有的缓冲区,并且关闭已经打开的模块。
如果发生错误,返回 false
,
成功返回 true
。