本文实例讲述了php自定义hash函数实现方法。分享给大家供大家参考。具体分析如下:
这里演示php实现的一个简单hash算法,可以用来加密,不过这个函数过于简单,不能用来解密
function simplehash($str){ $n = 0; // the magic happens here: // i just记承天寺夜游原文及翻译 loop trough all letters and add the // ascii value to a integer variable. for ($c=0; $c < str四个自信有没有方面存在的问题len($str); $c++) $n += ord($str[$c]); // after we went trough all lett隋朝之前是什么朝代ers // we have a number小孩子咳嗽 that reprents the // content of the string return $n;}
调用方法:
$teststring = 'www.jb51.net';print simplehash($teststring); // returns: 1082
希望本文所述对大家的php程序设计有所帮助。
本文发布于:2023-04-06 09:13:19,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/5c24335c5afc0d79d4fbeb7d9800d945.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:php自定义hash函数实例.doc
本文 PDF 下载地址:php自定义hash函数实例.pdf
留言与评论(共有 0 条评论) |