PHP - md5 函数



语法

string md5 ( string $str [, bool $raw_output = false ] )

定义和用法

用于计算字符串的 md5 哈希值。

返回值

返回一个 32 个字符的十六进制哈希值。

参数

序号 参数及描述
1

str

包含字符串信息。

2

raw_output

如果为 TRUE,则返回长度为 16 的原始二进制格式摘要。

示例

尝试以下示例

<?php
   $str = "tutorialspoint";
   
   echo md5($str);
?>

这将产生以下结果:

6c60b3cfe5124f982eb629e00a98f01f
php_function_reference.htm
广告