PHP - crypt 函数



语法

string crypt ( string $str [, string $salt ] )

定义和用法

用于对字符串进行哈希处理

返回值

返回哈希后的字符串

参数

序号 参数及描述
1

str

要进行哈希处理的字符串

示例

尝试以下示例

<?php
   $input = 'information';
   
   $hash = crypt($input);
?>
php_function_reference.htm
广告