PHP custom hash function example, phphash function_PHP tutorial

WBOY
Release: 2016-07-13 09:54:53
Original
1084 people have browsed it

php custom hash function example, phpash function

The example in this article describes the implementation method of php custom hash function. Share it with everyone for your reference. The specific analysis is as follows:

Here is a demonstration of a simple hash algorithm implemented in PHP, which can be used for encryption. However, this function is too simple and cannot be used for decryption

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 < strlen($str); $c++)
    $n += ord($str[$c]);
  // After we went trough all letters
  // we have a number that represents the
  // content of the string
  return $n;
}
Copy after login

Calling method:

$TestString = 'www.jb51.net';
print SimpleHash($TestString); 
// returns: 1082
Copy after login

I hope this article will be helpful to everyone’s PHP programming design.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/994920.htmlTechArticlephp custom hash function example, phphash function This article describes the implementation method of php custom hash function. Share it with everyone for your reference. The specific analysis is as follows: Here is a demonstration of php implementation...
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template