1

我正在为 paypal ipn 使用以下代码:

    <?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.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) {

// PAYMENT VALIDATED & VERIFIED!

}

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

// PAYMENT INVALID & INVESTIGATE MANUALY!

}
}
fclose ($fp);
}

    ?>

在以各种方式进行测试之后,我让一切正常工作,除非:

if (strcmp ($res, "VERIFIED") == 0)  

不工作

if (strcmp ($res, "VERIFIED") == 1)

作品

显然它没有得到验证,因为我正在从沙盒发送 IPN。

可能缺少什么?

4

1 回答 1

3

既然你们都说这strcmp($res, "VERIFIED") == 1是真的,$res 比字符串 VERIFIED 大 1 个字符。我的猜测是 $res 最后有一个 \n 字符或其他需要剥离的字符。尝试在str_replace('\n', '', $res)使用 strcmp 调用行之前执行类似操作。虽然只是大声思考。如果这不起作用,请告诉我。

仅供参考,PayPal 有在线示例代码,用于使用 cURL 在 PHP 中验证 IPN。链接:http ://www.x.com/developers/paypal/documentation-tools/paypal-code-samples#instantpaymentnotification

于 2012-09-14T18:08:29.520 回答