gpt4 book ai didi

php - 对 Paypal 付款真的很困惑

转载 作者:太空宇宙 更新时间:2023-11-03 15:54:00 26 4
gpt4 key购买 nike

更新 1:

$res 写入文本文件只会返回单词 VERIFIED:

<?php  
/*
mysql_connect("localhost", "user", "password") or die(mysql_error());
mysql_select_db("PayPal") or die(mysql_error());
*/

// read the post from PayPal system and add 'cmd'
$req = 'cmd=_notify-validate';
foreach ($_POST as $key => $value) {
$value = urlencode(stripslashes($value));
$req .= "&$key=$value";
}
// post back to PayPal system to validate
$header = "POST /cgi-bin/webscr HTTP/1.0\r\n";
$header .= "Content-Type: application/x-www-form-urlencoded\r\n";
$header .= "Content-Length: " . strlen($req) . "\r\n\r\n";

$fp = fsockopen ('ssl://www.sandbox.paypal.com', 443, $errno, $errstr, 30);

if (!$fp) {
// HTTP ERROR
} else {
fputs ($fp, $header . $req);
while (!feof($fp)) {
$res = fgets ($fp, 1024);
if (strcmp ($res, "VERIFIED") == 0) {

$ourFileName = "payment_successful.txt";
$ourFileHandle = fopen($ourFileName, 'w') or die("can't open file");
fwrite($ourFileHandle, $res);
fclose($ourFileHandle);


}

else if (strcmp ($res, "INVALID") == 0) {

$ourFileName = "payment_failed.txt";
$ourFileHandle = fopen($ourFileName, 'w') or die("can't open file");
fwrite($ourFileHandle, $res);
fclose($ourFileHandle);

}
}
fclose ($fp);
}
?>

原始问题:

我有以下 IPN(即时付款通知)脚本,它可以工作,即如果成功,它会创建一个成功的文件,如果失败,则会创建一个失败的文件。

paypal 是否将 post 值返回到 IPN 文件,以便我可以确定哪笔付款成功或哪笔付款失败?

如果是,我如何访问这些值?

如果否,我如何确定哪笔付款已被接受或拒绝?

这是我目前拥有的IPN文件中的脚本:

<?php  
// read the post from PayPal system and add 'cmd'
$req = 'cmd=_notify-validate';
foreach ($_POST as $key => $value) {
$value = urlencode(stripslashes($value));
$req .= "&$key=$value";
}
// post back to PayPal system to validate
$header = "POST /cgi-bin/webscr HTTP/1.0\r\n";
$header .= "Content-Type: application/x-www-form-urlencoded\r\n";
$header .= "Content-Length: " . strlen($req) . "\r\n\r\n";

$fp = fsockopen ('ssl://www.sandbox.paypal.com', 443, $errno, $errstr, 30);

if (!$fp) {
// HTTP ERROR
} else {
fputs ($fp, $header . $req);
while (!feof($fp)) {
$res = fgets ($fp, 1024);
if (strcmp ($res, "VERIFIED") == 0) {

$ourFileName = "payment_successful.txt";
$ourFileHandle = fopen($ourFileName, 'w') or die("can't open file");
fclose($ourFileHandle);

}

else if (strcmp ($res, "INVALID") == 0) {

$ourFileName = "payment_failed.txt";
$ourFileHandle = fopen($ourFileName, 'w') or die("can't open file");
fclose($ourFileHandle);

}
}
fclose ($fp);
}
?>

最佳答案

您的通用脚本中有答案。

Paypal 将在字符串中返回单词 VERIFIED 或 INVALID。

($res, "VERIFIED") == 0

一个好的技巧是将 $res 的值写入您的日志,您将在最后看到返回的结果。

确保您也使用沙箱进行测试。

http://x.com 也有一个论坛(他们为该域名支付了多少钱?)

FWIW,Paypal 的 IPN 是一个 PITA。

关于php - 对 Paypal 付款真的很困惑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5592148/

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