php设置16位的md5加密方法

admin5年前php1352

用substr函数实现

substr(md5(变量),8,16);

就可以实现


默认的md5(变量)输出的是32位加密方法

标签: substrmd5

相关文章

php post undefined index,PHP 中提示undefined index的解决方案

声明为空isset($_POST['user_email']),或者,empty($_POST['user_email'])在php.ini中设置error_repor...

php下载地址

https://windows.php.net/downloads/releases/archives/...

php调用chatgpd接口输出

<?php $url = 'https://api.openai.com/v1/completions'; $data = arr...

php数组元素的增加删除修改操作方法

增加$arr[$iy]["pr_count"]+=$pr_count;减少$arr[$iy]["pr_count"]-=$pr_count;删除unset($a...

批量插入

一条insert语句批量插入多条记录原创|浏览:138554|更新:2017-12-19 08:21一条insert语句批量插入多条记录常见的insert语句,向数据库中,一条语句只能插入一条数据:i...

php的function函数内部只能有一个return

php的function函数内部只能有一个return,之后的代码就都全部运行不正常了...

发表评论    

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。