| 
 
update : 2015.11.03
 
php.shukuma.com검색:
  
 | 
hash(PHP 5 >= 5.1.2, PECL hash >= 1.1) hash — Generate a hash value (message digest) 설명
   string hash
    ( string  
 $algo
   , string $data
   [, bool $raw_output = false
  ] )인수
 
 반환값
   Returns a string containing the calculated message digest as lowercase hexits
   unless  변경점
 
 예제
 Example #1 A hash() example 
<?php위 예제의 출력: ec457d0a974c48d5685a7efa03d137dc8bbde7e3 
 Example #2 Calculate pre PHP-5.4 tiger hashes with PHP-5.4 and higher 
<?phpPHP 5.3에서 위 예제의 출력: 146a7492719b3564094efe7abbd40a7416fd900179d02773 64359b7192746a14740ad4bb7afe4e097327d0790190fd16 PHP 5.4에서 위 예제의 출력: 64359b7192746a14740ad4bb7afe4e097327d0790190fd16 146a7492719b3564094efe7abbd40a7416fd900179d02773 참고
 
  |