使用js的String.fromCharCode和php的chr配合实现字符串位移加密解密,具体js和php代码如下:
点击查看全文
前端jsfunction weiyi(oldstr, shfit) { var result = ""; for (var i = 0; i < oldstr.length; i++) { var c = oldstr.charCodeAt(i); // 获取字符的Unicode编码 //检测字符是否为大写或小写字母并进行位移 if (c >= 65 && c <= 90) { // 大写字母 result += String.fromCharCode((c - 65 + shfit) % 26 + 65); } else if (c >= 97 && c <= 122) { // 小写字母 result += String.fromCharCode((c - 97 + shfit) % 26 + 97); } else { // 非字母字符不变 result += oldstr.charAt(i); } } return result; } console.log(weiyi("HelloWorld", 154));//生成FcjjmUmpjb后端php
<?php function weiyides($_getcodestr, $shift) { $result = ""; $shift = 26 - ($shift % 26); // 遍历字符串中的每个字符 for ($i = 0; $i < strlen($_getcodestr); $i++) { $c = ord($_getcodestr[$i]); // 获取字符的ASCII编码 // 检测字符是否为大写或小写字母并进行位移 if ($c >= 65 && $c <= 90) { // 大写字母 $result .= chr(($c - 65 + $shift) % 26 + 65); } elseif ($c >= 97 && $c <= 122) { // 小写字母 $result .= chr(($c - 97 + $shift) % 26 + 97); } else { // 非字母字符不变 $result .= $_getcodestr[$i]; } } return $result; } echo weiyides("FcjjmUmpjb",154);
网友回复
acejs代码编辑器如何调用openai api实现选择代码修改与代码自动补全?
ace.js如何获取选择文本的开始和结束行数?
如何把qwen code cli或gemini cli的免费调用额度换成http api对外开放接口?
如何限制windows10电脑只能打开指定的程序?
python如何调用ai大模型实现web网页系统的功能测试并生成测试报告?
有没有免费进行web网站ai仿真人测试生成测试报告的mcp服务或api?
Context Engineering到底是啥,有什么用?
如何使用Google veo 3+高斯溅射(Gaussian Splatting)技术生成4d视频?
浏览器中如何实时调用摄像头扫描二维码?
grok4、gemini2.5pro、gpt5、claude4.1到底谁的编程能力更强一些?