Home > Backend Development > PHP Tutorial > PHP sha1是什么意思

PHP sha1是什么意思

PHPz
Release: 2020-09-05 12:00:02
Original
2752 people have browsed it

PHP sha1是什么意思

PHP sha1是什么意思?

PHP sha1() 函数

定义和用法

sha1() 函数计算字符串的 SHA-1 散列。

sha1() 函数使用美国 Secure Hash 算法 1。

如果成功,则返回所计算的 SHA-1 散列,如果失败,则返回 false。

语法

sha1(string,raw)
Copy after login

参数

string 必需。规定要计算的字符串。

raw

可选。规定十六进制或二进制输出格式:

TRUE - 原始 20 字符二进制格式

FALSE - 默认。40 字符十六进制数

注释:该参数是 PHP 5.0 中添加的。

例子

例子 1

<?php
$str = &#39;Hello&#39;;
echo sha1($str);
?>
Copy after login

输出:

f7ff9e8b7bb2e09b70935a5d785e0cc5d9d0abf0
Copy after login

例子 2

在本例中,我们将输出 sha1() 的结果,然后对其测试:

<?php
$str = &#39;Hello&#39;;
echo sha1($str);
if (sha1($str) == &#39;f7ff9e8b7bb2e09b70935a5d785e0cc5d9d0abf0&#39;)
  {
  echo "<br />Hello world!";
  exit;
  }
?>
Copy after login

输出:

f7ff9e8b7bb2e09b70935a5d785e0cc5d9d0abf0
Hello world!
Copy after login

更多PHP相关知识,请访问PHP中文网!

Related labels:
php
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