+
95
-

Deprecated: Function mcrypt_ecb() is deprecated in怎么办?

php

Deprecated: Function mcrypt_ecb() is deprecated in怎么办?代码如下

<?php
echo mcrypt_ecb ( MCRYPT_DES, "123456", "abc", MCRYPT_ENCRYPT );
?>



网友回复

+
15
-

php5.5之后就废弃了mcrypt_ecb,可以使用mcrypt_encrypt,以上代码可以换成

<?php
$iv = ...

点击查看剩余70%

我知道答案,我要回答