我下载了paypalplatform.php,不记得从哪里来,但它给了我一个很好的小功能,让我可以查看付款状态:
CallPaymentDetails( $payKey, $transactionId, $trackingId );
这会返回许多有用的数据,例如status
和paymentInfoList.paymentInfo(0).transactionStatus
等等。
我知道我可以编写很多if
语句来尝试解释当我调用CallPaymentDetails
时返回给我的所有值,我认为这些值很容易出错,或者可能导致我看着一个场景。
所以我的问题是,是否存在一个考虑所有值的样本模板,即所以我不必重新发明轮子,这会照顾所有场景?
例如,目前我有:
$resArray = CallPaymentDetails( $payKey, $transactionId, $trackingId );
if(strtoupper($resArray["responseEnvelope.ack"]) == "SUCCESS") {
if(strtoupper($resArray["status"]) == "CREATED") {
// do something
} elseif(strtoupper($resArray["status"]) == "EXPIRED") {
// do something
} elseif(strtoupper($resArray["status"]) == "COMPLETED") {
// do something
if(strtoupper($resArray["paymentInfoList.paymentInfo(0).transactionStatus"]) == "PENDING") {
// do something
} elseif(strtoupper($resArray["paymentInfoList.paymentInfo(0).transactionStatus"]) == "FAILED") {
// do something
} else {
// what other value could be returned
}
} else {
// what other value could be returned
}
} else {
// what other value could be returned
}
如果我尝试做所有变量,我可能会永远尝试捕获所有场景,这就是为什么我想知道这样的模板是否已经存在,它通过if语句满足所有场景?
答案 0 :(得分:3)
首先,您不应该像在paypalplatform.php
上那样在互联网上抓取文件。
Paypal use Github分享所有不同语言的API。我真的建议你看看一些存储库,例如:
最后两个对你很有意思。它们都为您的案例提供了有用的代码示例。
<强> codesamples-PHP 强>
它向您提及的函数提供simple call,并描述了使用一个变量$response->status
可以找到的所有返回消息。评论揭示了这个变量可以有的所有情况:
if ($response->responseEnvelope->ack == "Success")
{
// The status of the payment. Possible values are:
//
// * CREATED - The payment request was received; funds will be
// transferred once the payment is approved
// * COMPLETED - The payment was successful
// * INCOMPLETE - Some transfers succeeded and some failed for a
// parallel payment or, for a delayed chained payment, secondary
// receivers have not been paid
// * ERROR - The payment failed and all attempted transfers failed
// or all completed transfers were successfully reversed
// * REVERSALERROR - One or more transfers failed when attempting
// to reverse a payment
// * PROCESSING - The payment is in progress
// * PENDING - The payment is awaiting processing
$logger->log("Payment Status : ".$response->status);
}
<强> adaptivepayments-SDK-PHP 强>
它提供了a more detailed example如何使用您的功能。它从html表单中获取值,更容易测试它。与前面的示例一样,我们可以看到API返回的相同状态:
$ack = strtoupper($response->responseEnvelope->ack);
if($ack != "SUCCESS"){
echo "<b>Error </b>";
echo "<pre>";
print_r($response);
echo "</pre>";
} else {
/*
* The status of the payment. Possible values are:
* CREATED - The payment request was received; funds will be
transferred once the payment is approved
* COMPLETED - The payment was successful
* INCOMPLETE - Some transfers succeeded and some failed for a
parallel payment or, for a delayed chained payment, secondary
receivers have not been paid
* ERROR - The payment failed and all attempted transfers failed
or all completed transfers were successfully reversed
* REVERSALERROR - One or more transfers failed when attempting
to reverse a payment
* PROCESSING - The payment is in progress
* PENDING - The payment is awaiting processing
*/
echo "<table>";
echo "<tr><td>Ack :</td><td><div id='Ack'>$ack</div> </td></tr>";
echo "<tr><td>PayKey :</td><td><div id='PayKey'>$response->payKey</div> </td></tr>";
echo "<tr><td>Status :</td><td><div id='Status'>$response->status</div> </td></tr>";
echo "</table>";
echo "<pre>";
print_r($response);
echo "</pre>";
}
在这两种情况下,您只需要一个简单的开关/案例来处理响应状态。这样的事情:
switch ($status)
{
case 'CREATED':
// handle CREATED state
break;
case 'COMPLETED':
// handle COMPLETED state
break;
case 'INCOMPLETE':
// handle INCOMPLETE state
break;
case 'ERROR':
// handle ERROR state
break;
case 'REVERSALERROR':
// handle REVERSALERROR state
break;
case 'PROCESSING':
// handle PROCESSING state
break;
case 'PENDING':
// handle PENDING state
break;
default:
throw new Exception(sprintf("State '%s' isn't handle.", $status));
}