gpt4 book ai didi

PHP 中的 Javascript 回显结果

转载 作者:行者123 更新时间:2023-12-03 03:57:07 25 4
gpt4 key购买 nike

好的,我有一些想要回显的 Javascript 代码。

这是我想要回显的代码,我希望它基本上打印出生成的“医院”和“打乱”的响应,到目前为止我只是无法在 PHP 中回显结果。

<script language="JavaScript">
<!--
function hospital() {
var chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz";
var string_length = Math.floor(Math.random() * (3000 - 256 + 1)) + 256;
var prngstring = '';

for (var i = 0; i < string_length; i++) {
var rnum = Math.floor(Math.random() * chars.length);
prngstring += chars.substring(rnum,rnum+1);
}
document.theform.hospital.value += prngstring;
}

function catchme() {
var rounds = 812;
var scramble = "lbwnaoJJgJbQCc1zxfiQugycOhboPrdbciAVBaBeqnzXzhztbPddaBWzNjcrafefibAcnJohbDQDbuaueudckuGvAuccEhPmehbjZdaecgAMphcPAeabFvxsGwteWS";

for (var i = 0; i <= rounds; i++) {
scramble = sjcl.codec.hex.fromBits(sjcl.hash.sha256.hash(scramble)).toUpperCase();
}
document.theform.waste.value += scramble;
hospital();
}
-->
</script>

非常感谢并支持。

最佳答案

没有调用catchme函数。您需要调用 catchme 函数,以便以下语句起作用。

  • document.theform.waste.value += 打乱;
  • document.theform.hospital.value += prngstring;

使catchme成为一个自调用函数。

(function catchme() {
var rounds = 812;
var scramble = "lbwnaoJJgJbQCc1zxfiQugycOhboPrdbciAVBaBeqnzXzhztbPddaBWzNjcrafefibAcnJohbDQDbuaueudckuGvAuccEhPmehbjZdaecgAMphcPAeabFvxsGwteWS";

for (var i = 0; i <= rounds; i++) {
scramble = sjcl.codec.hex.fromBits(sjcl.hash.sha256.hash(scramble)).toUpperCase();
}
document.theform.waste.value += scramble;
hospital();
})();

关于PHP 中的 Javascript 回显结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44894922/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com