php下md5:
md5(rawurlencode('中文 内容'));js下md5:
md5.hex_md5(encodeURIComponent('中文 内容'));注意:php进行转码时,不能用urlencode,它不会对空格进行转码,而js的encodeURIComponent会,这就导致了如果参数中含有空格,结果还是不一致。二php的rawurlencode则会和js一样,对空格进行转码。
md5(rawurlencode('中文 内容'));js下md5:
md5.hex_md5(encodeURIComponent('中文 内容'));注意:php进行转码时,不能用urlencode,它不会对空格进行转码,而js的encodeURIComponent会,这就导致了如果参数中含有空格,结果还是不一致。二php的rawurlencode则会和js一样,对空格进行转码。