我正在尝试找到一种通过 php 加密并通过 javascript/ajax 解密的方法
这并不意味着是一个强大的解决方案,而只是一个轻量级的补救措施,以阻止临时用户右键单击并查看源以在清晰的视图中查看正确答案。答案将通过 ajax 揭晓。
我试图将我在下面找到的字符串函数的编码转换为 php,但这不正确。
http://www.yaldex.com/FSPassProtect/CharacterEncoder.htm
我到目前为止的代码是这个......
$string = "Ordinarily, license fees are in the nature of the exercise of police";
for($i=0;$i<strlen($string);$i+=1){
$output = $output . (ord($string[$i]) - 23);
}
echo $output;
但是当我将生成的代码传递到上面列出的网页中进行解密时,它是不正确的。
任何帮助,将不胜感激。