怎么用php给数据加密 php可以加密数据吗

主机教程 建站分享 2年前 (2022-11-01) 198次浏览

文章摘要:怎么用php给数据加密 php可以加密数据吗

在php中使用crypt函数对数据进行加密,具体方法如下: crypt函数语法: string crypt ( […]

在php中使用crypt函数对数据进行加密,具体方法如下:

crypt函数语法:

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

crypt函数使用方法:

// 需要加密的字符串

$str = 'this is string';

$res = crypt($str);

$res = crypt($str, 'ly');


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:怎么用php给数据加密 php可以加密数据吗
文章链接:http://www.7966.org/post/14030.html
转载请注明出处

喜欢 (0)