Home >Backend Development >PHP Tutorial >php?表单数据加密

php?表单数据加密

WBOY
WBOYOriginal
2016-06-23 13:25:341515browse

var json = encodeURI(JSON.stringify(data));如何对  JSON.stringify(data) 进行加密.


回复讨论(解决方案)

encodeURI 是 url 编码,不是加密!(没有密钥的编码算法都不是加密)
传到 php 后,如果 web 服务器没有替你解开,那就用 urldecode 自行解码

我是想给 JSON.stringify(data)   这个数据加密

虽然可用 js 实现各种加密算法,但是 js 是解释执行的,所以加密过程都展现在用户面前。因此加密只是摆设而已

用户可以看到js代码,所以js做加密没什么用
除非你把js代码混淆化什么的让他没法看。。。

Statement:
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
Previous article:php?数据的读取Next article:linux PHP 编译参数详解