我使用以下代码进行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)
WORKS
显然它没有得到验证,因为我正在从沙箱发送IPN。
可能缺少什么?
答案 0 :(得分:3)
由于你们都说strcmp($res, "VERIFIED") == 1
为真,所以$ res比字符串VERIFIED“大1”字符“大”。我的猜测是$ res在末尾有一个\ n字符或者其他需要删除的东西。在使用strcmp调用行之前尝试执行str_replace('\n', '', $res)
之类的操作。只是大声思考。如果这不起作用,请告诉我。
Fyi,PayPal在线提供示例代码,以使用cURL验证PHP中的IPN。 链接:http://www.x.com/developers/paypal/documentation-tools/paypal-code-samples#instantpaymentnotification