gpt4 book ai didi

php - Paypal 沙箱 notify_url 文件不工作

转载 作者:太空宇宙 更新时间:2023-11-03 16:33:18 24 4
gpt4 key购买 nike

谁能告诉我这段代码有什么问题。

我正在尝试使用 html 表单与 Paypal 进行支付集成。我已经指定了 notify_url,付款正常,但我无法进入此 block if (strcmp($res, "VERIFIED") == 0){}

// Response from Paypl
// read the post from PayPal system and add 'cmd'
$req = 'cmd=_notify-validate';
foreach ($_POST as $key => $value) {
$value = urlencode(stripslashes($value));
$value = preg_replace('/(.*[^%^0^D])(%0A)(.*)/i', '${1}%0D%0A${3}', $value); // IPN fix
$req .= "&$key=$value";
}

// assign posted variables to local variables
$data['item_name'] = $_POST['item_name'];

// 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
echo 'HTTP ERROR';
} else {

file_put_contents('test1.txt', 'test');
fputs($fp, $header . $req);
while (!feof($fp)) {
$res = fgets($fp, 1024);
if (strcmp($res, "VERIFIED") == 0) {
echo 'SUCCESS';
} else if (strcmp($res, "INVALID") == 0) {
echo 'INVALID';
}
}
fclose($fp);
}

最佳答案

这里使用 CuRl 方法而不是 fsock 来 POST 数据是链接:https://developer.paypal.com/webapps/developer/docs/classic/ipn/ht_ipn/或者我的建议是使用 AngellaEye 库,它对 Paypal 集成更有效和有用,链接如下:http://www.angelleye.com/how-to-integrate-paypal-with-php-class-library/从此链接下载并浏览它。

关于php - Paypal 沙箱 notify_url 文件不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19570772/

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