在使用以下 Paypal IPN 代码时,我有时会收到“getaddrinfo failed”错误,并且我的脚本(通过 PHP 更新 mySQL 数据库)未执行。
编码
// read post from PayPal system and add 'cmd'
$postvars = array();
while (list ($key, $value) = each ($HTTP_POST_VARS)) {
$postvars[] = $key;
}
$req = 'cmd=_notify-validate';
for ($var = 0; $var < count ($postvars); $var++) {
$postvar_key = $postvars[$var];
$postvar_value = $$postvars[$var];
$req .= "&" . $postvar_key . "=" . urlencode ($postvar_value);
}
// post back to PayPal system to validate
$header .= "POST /cgi-bin/webscr HTTP/1.1\r\n";
$header .= "Content-Type: application/x-www-form-urlencoded\r\n";
$header .= "Host: www.paypal.com\r\n";
$header .= "Content-Length: " . strlen($req) . "\r\n";
$header .= "Connection: close\r\n";
$fp = fsockopen('ssl://www.paypal.com', 443, $errno, $errstr, 30);
...
...
...
if (!$fp) {
echo $errstr . " (" . $errno . ")";
} else {
// UPDATE DB //
}
错误
php_network_getaddresses : getaddrinfo failed: Name or service not known (0)
我不明白这是随机发生的,有时整个脚本都可以正常工作。它似乎完全独立于收到的变量:
- subscr_id
- txn_type
- 验证签名
- 等等等等……
我一周前联系了 Paypal 支持,但到目前为止没有回复。
任何帮助将不胜感激。:)
PS:我刚刚意识到错误仅来自一行。
$fp = fsockopen('ssl://www.paypal.com', 443, $errno, $errstr, 30);