Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法让我的 PHP 代码生成一个加密的 BuyNow 按钮,该按钮还包括自定义字段并实现 IPN URL 和重定向页面?
您不必加密。只需使用“自定义”变量,除其他外,您可能需要放入其中,添加价格和产品编号的哈希值,如下所示:
$sCustom .= '|' . md5($sSalt . $sProduct . $sPrice);
然后,在处理 IPN 时,请确保此散列不受接收回的内容的干扰。如果是,则阻止交易。
在加密按钮中有一个名为“自定义”的字段,您可以将一个数组序列化到其中,它将返回到您的 IPN :)