0

我有这个脚本。

<head>
<script type="text/javascript" src="sha1.js"></script>

</head>
<body>
<?php
$A= 'TEST01';
$B= '059B8125F';
$C= '20061123_003';
$D= '100.00';
$E= '50126';

?>
<form name="checkout" method="post" action="">
<input type="hidden" name="A" value="<?php echo $A; ?>" />
<input type="hidden" name="B" value="<?php echo $B; ?>" />
<input type="hidden" name="C" value="<?php echo $C; ?>" />
<input type="hidden" name="D" value="<?php echo $D; ?>" />
<input type="hidden" name="E" value="<?php echo $E; ?>" />
</form>

<script type="text/javascript" language="javascript">
var str = "##" + form.A.value.toUpperCase() + "##" + form.B.value.toUpperCase() + "##" + form.C.value.toUpperCase() + "##" + form.D.value.toUpperCase() + "##" + form.E.value.toUpperCase() + "##";

form.SIGNATURE.value = hex_sha1(str);
</script>


</body>

我的问题是,如何在 PHP 中显示 SIGNATURE 值?我想在回声中显示它。是否可以?

谢谢你们

4

1 回答 1

0

PHP 的 sha1 函数可能对此有用。

这应该从 php 端计算。

<head>
<script type="text/javascript" src="sha1.js"></script>

</head>
<body>
<?php
$A= 'TEST01';
$B= '059B8125F';
$C= '20061123_003';
$D= '100.00';
$E= '50126';

$hash_str = "##" + strtoupper($A) + "##" + strtoupper($B) + "##" + strtoupper($C) + "##" + strtoupper($D) + "##" + strtoupper($E) + "##";

$signature = sha1($hash_str);

echo $signature;
?>

<form name="checkout" method="post" action="">
<input type="hidden" name="A" value="<?php echo $A; ?>" />
<input type="hidden" name="B" value="<?php echo $B; ?>" />
<input type="hidden" name="C" value="<?php echo $C; ?>" />
<input type="hidden" name="D" value="<?php echo $D; ?>" />
<input type="hidden" name="E" value="<?php echo $E; ?>" />
<input type="hidden" name="SIGNATURE" value="<?php echo $signature; ?>" />
</form>

</body>
于 2013-02-13T04:59:16.933 回答