在php中使用crypt函数对数据进行加密,具体方法以下:
crypt函数语法:
string crypt ( string $str [, string $salt ] )
crypt函数使用方法:
<?php
// 需要加密的字符串
$str = 'this is string';
$res = crypt($str);
$res = crypt($str, 'ly');
本文来源:https://www.yuntue.com/post/59402.html | 云服务器网,转载请注明出处!