使用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);
网友回复
有没有哪个ai人工智能动态生成鲜活带表情肢体动作逼真数字人与人类交流视频聊天?
threejs如何将iframe与video作为立方体模型一面的材质可点击交互?
UEFI与Legacy启动有啥不同?
可在u盘启动的开源匿名操作系统有哪些?
Pyloid与Pywebview打包生成桌面应用区别?
win10的iso镜像如何通过u盘来安装?
如何解决输入sora2邀请码报错:Sora is not available in The Netherlands yet
在哪可免费白嫖使用sora2生成视频?
php如何结合openai兼容的embedding向量化api实现语义化模糊关键词搜索匹配?
python如何结合qwen embedding向量化api实现语义化模糊关键词搜索匹配?