>  기사  >  php教程  >  php自定义hash函数实例

php自定义hash函数实例

WBOY
WBOY원래의
2016-06-13 09:05:191051검색

php自定义hash函数实例

   本文实例讲述了php自定义hash函数实现方法。分享给大家供大家参考。具体分析如下:

  这里演示php实现的一个简单hash算法,可以用来加密,不过这个函数过于简单,不能用来解密

  ?

1

2

3

4

5

6

7

8

9

10

11

12

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

$n += ord($str[$c]);

// After we went trough all letters

// we have a number that represents the

// content of the string

return $n;

}

  调用方法:

  ?

1

2

3

$TestString = 'www.jb51.net';

print SimpleHash($TestString);

// returns: 1082

  希望本文所述对大家的php程序设计有所帮助。

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.